Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
ObsidianBlk
/
Goldbox64
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Changed the init() call to use pygame.display.init() instead of pygame.init(). Display should ONLY initialize the display!
master
Bryan Miller
hace 6 años
padre
05a9db02c4
commit
86bb949cfa
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
+1
-1
game/gbe/display.py
+ 1
- 1
game/gbe/display.py
Ver fichero
@@ -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
Escribir
Vista previa
Cargando…
Cancelar
Guardar