Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
ObsidianBlk
/
Goldbox64
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Changed the init() call to use pygame.display.init() instead of pygame.init(). Display should ONLY initialize the display!
master
Bryan Miller
6 anni fa
parent
05a9db02c4
commit
86bb949cfa
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
+1
-1
game/gbe/display.py
+ 1
- 1
game/gbe/display.py
Vedi File
@@ -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
Write
Preview
Loading…
Annulla
Salva