From 3bee476a1243b6164caa04b3410ade11d70ce988 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 20 Oct 2021 09:08:32 -0400 Subject: removed a useless comment --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3