We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab17c6d commit 0e56122Copy full SHA for 0e56122
game/core.py
@@ -7,7 +7,7 @@ class Engine(object):
7
8
def __init__(self, title, width, height, *args, **kwargs):
9
super(Engine, self).__init__(*args, **kwargs)
10
- self.window = pygame.display.set_mode((width, height), pygame.DOUBLEBUF|pygame.HWSURFACE)
+ self.window = pygame.display.set_mode((width, height), pygame.DOUBLEBUF)
11
self.screen = pygame.display.get_surface()
12
pygame.display.set_caption(title)
13
pygame.font.init()
0 commit comments