Skip to content

Commit

Permalink
Fix typo in Brick class
Browse files Browse the repository at this point in the history
  • Loading branch information
jriyyya committed Jul 5, 2023
1 parent f1eb8e8 commit 49eada6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brick.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
class Brick:

def __init__(self, position, dimensions):
self.gameDisplayq = pygame.display.get_surface()
self.gameDisplay = pygame.display.get_surface()

self.rect = pygame.Rect(position[0], position[1],
dimensions[0], dimensions[1])
Expand Down

0 comments on commit 49eada6

Please sign in to comment.