align names and squares, order the rainbow names again and let cursor size be 0.1x min
This commit is contained in:
@@ -32,8 +32,8 @@ public class ReplayPlayback {
|
||||
public ReplayFrame currentFrame;
|
||||
public ReplayFrame nextFrame;
|
||||
private int frameIndex;
|
||||
private Color color;
|
||||
private Cursor cursor;
|
||||
public Color color;
|
||||
public Cursor cursor;
|
||||
private int keydelay[];
|
||||
public static final int SQSIZE = 15;
|
||||
private boolean hr;
|
||||
@@ -111,7 +111,7 @@ public class ReplayPlayback {
|
||||
ypos *= (SQSIZE + 5);
|
||||
for (int i = 0; i < 4; i++) {
|
||||
if (keydelay[i] > 0) {
|
||||
g.fillRect(SQSIZE * i, ypos, SQSIZE, SQSIZE);
|
||||
g.fillRect(SQSIZE * i, ypos + 5, SQSIZE, SQSIZE);
|
||||
}
|
||||
keydelay[i] -= renderdelta;
|
||||
}
|
||||
|
||||
@@ -358,7 +358,7 @@ public class Options {
|
||||
}
|
||||
};
|
||||
|
||||
public static final NumericOption OPTION_CURSOR_SIZE = new NumericOption("Size", "CursorSize", "Change the cursor scale.", 100, 50, 200) {
|
||||
public static final NumericOption OPTION_CURSOR_SIZE = new NumericOption("Size", "CursorSize", "Change the cursor scale.", 100, 10, 200) {
|
||||
@Override
|
||||
public String getValueString () {
|
||||
return String.format("%.2fx", val / 100f);
|
||||
|
||||
Reference in New Issue
Block a user