Back to main page
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index 46d7aab..6347055 100644
--- a/main.py
+++ b/main.py
@@ -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)