Skip to content

Commit

Permalink
Examples: remove shadow gap in maze.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thirdr committed Oct 9, 2024
1 parent 3f971f9 commit 1f6dab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/maze.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def draw(self):
for col in range(len(self.maze[row])):
if self.maze[row][col] == 1:
display.set_pen(BLACK)
display.rectangle(col * 10 + 2, row * 10 + 2, 9, 9)
display.rectangle(col * 10 + 2, row * 10 + 2, 10, 10)
display.set_pen(WALL)
display.rectangle(col * 10, row * 10, 9, 9)

Expand Down

0 comments on commit 1f6dab5

Please sign in to comment.