瀏覽代碼

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…
取消
儲存