Back to main page
summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorMax <mahn.maxwell@gmail.com>2021-10-20 09:08:32 -0400
committerMax <mahn.maxwell@gmail.com>2021-10-20 09:08:32 -0400
commit3bee476a1243b6164caa04b3410ade11d70ce988 (patch)
treebf79dfeccc13e1c91edbbce2d18fc7e4fd030303 /main.py
parent0fe59e023f8204bd57c82dc718ea36abbd4767ee (diff)
removed a useless comment
Diffstat (limited to 'main.py')
-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)