better scale for rgb cursor color hue inc

This commit is contained in:
yugecin
2016-10-01 12:03:07 +02:00
parent 1a44b38636
commit 6404bbafdc
3 changed files with 5 additions and 5 deletions

View File

@@ -829,10 +829,10 @@ public class Options {
}
},
DANCE_RGB_CURSOR_INC ("RGB cursor increment", "RGBCursorInc", "Amount of hue to shift, used for rainbow cursor override", Dancer.rgbhueinc, -1800, 1800) {
DANCE_RGB_CURSOR_INC ("RGB cursor increment", "RGBCursorInc", "Amount of hue to shift, used for rainbow cursor override", Dancer.rgbhueinc, -2000, 2000) {
@Override
public String getValueString() {
return String.format("%.1", val / 100f);
return String.format("%.2", val / 1000f);
}
@Override