Fix weird glitch that makes the playfield flash when starting to draw a circle when the playfield is empty. Somethign is messing with Color.white (fix #6)
This commit is contained in:
@@ -62,10 +62,12 @@ public enum ObjectColorOverrides {
|
||||
WHITE ("White", 13) {
|
||||
@Override
|
||||
public Color getColor(int comboColorIndex) {
|
||||
return Color.white;
|
||||
return white;
|
||||
}
|
||||
};
|
||||
|
||||
private static Color white = new Color(255, 255, 255);
|
||||
|
||||
public int nr;
|
||||
private String displayText;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user