Преглед изворни кода

Changed the init() call to use pygame.display.init() instead of pygame.init(). Display should ONLY initialize the display!

master
Bryan Miller пре 6 година
родитељ
комит
86bb949cfa
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      game/gbe/display.py

+ 1
- 1
game/gbe/display.py Прегледај датотеку

@@ -127,7 +127,7 @@ class _Display:
def init(self, width=0, height=0):
if self._init == False:
self._init = True
pygame.init()
pygame.display.init()
self.set_mode((width, height), self._display_flags)
return self


Loading…
Откажи
Сачувај