diff --git a/snake.py b/snake.py index 63a9c57..80e16a6 100644 --- a/snake.py +++ b/snake.py @@ -10,7 +10,7 @@ def main(stdscr): stdscr.timeout(100) # Refresh rate # Initialize the board - h, w = 20, 40 # Board dimensions + h, w = 40, 80 # Board dimensions board = np.zeros((h, w), dtype=int) snake = [(h // 2, w // 2)] board[h // 2, w // 2] = 1