diff options
| author | Max <mahn.maxwell@gmail.com> | 2021-10-20 09:08:32 -0400 |
|---|---|---|
| committer | Max <mahn.maxwell@gmail.com> | 2021-10-20 09:08:32 -0400 |
| commit | 3bee476a1243b6164caa04b3410ade11d70ce988 (patch) | |
| tree | bf79dfeccc13e1c91edbbce2d18fc7e4fd030303 | |
| parent | 0fe59e023f8204bd57c82dc718ea36abbd4767ee (diff) | |
removed a useless comment
| -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) |
