Legend:
- Unmodified
- Added
- Removed
-
game.py
r2876668 r185faa0 150 150 [w, h] = [800, 600] 151 151 gameDisplay = pygame.display.set_mode((w, h), pygame.DOUBLEBUF|pygame.OPENGL) 152 elif system == 'Darwin': 153 # get around the osx opengl fullscreen bug 154 # I should also see if this bug occurs in pygame without opengl 155 gameDisplay = pygame.display.set_mode((w, h), pygame.DOUBLEBUF|pygame.OPENGL) 152 156 else: 153 157 gameDisplay = pygame.display.set_mode((w, h), pygame.FULLSCREEN|pygame.DOUBLEBUF|pygame.OPENGL)
Note:
See TracChangeset
for help on using the changeset viewer.