Skip to content

Commit

Permalink
Changed background color of the game window to black
Browse files Browse the repository at this point in the history
  • Loading branch information
RickMMA committed Apr 12, 2024
1 parent 1fb0c0b commit 3fc43b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def on_event(event):
DISPLAYSURFACE.blit(f, (SCREEN_WIDTH/2 - f.get_width()/2, SCREEN_HEIGHT/4))

elif gameState == True:
DISPLAYSURFACE.fill((200, 200, 200))
DISPLAYSURFACE.fill((0, 0, 0))
board.render(DISPLAYSURFACE)
if show_rect:
pygame.draw.rect(DISPLAYSURFACE, SELECT_GREEN, select_rect)
Expand Down

0 comments on commit 3fc43b2

Please sign in to comment.