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:
yugecin 2016-10-04 14:57:37 +02:00
parent 177e75ba29
commit c3785d0f25

View File

@ -62,10 +62,12 @@ public enum ObjectColorOverrides {
WHITE ("White", 13) { WHITE ("White", 13) {
@Override @Override
public Color getColor(int comboColorIndex) { public Color getColor(int comboColorIndex) {
return Color.white; return white;
} }
}; };
private static Color white = new Color(255, 255, 255);
public int nr; public int nr;
private String displayText; private String displayText;