diff options
| -rw-r--r-- | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ def FullDraw(key): continue color = 1 try: - color = int(math.log(gamestate[i][j]) / math.log(2)) # Might add colors to make it easier to see whats going on + color = int(math.log(gamestate[i][j]) / math.log(2)) except: pass DrawSquare(offsetX + j * scaleX, offsetY + i * scaleY, gamestate[i][j], color) |
