]> CRI, Mines Paris - PSL - minwii.git/blobdiff - src/minwii/start_win.py
Plus besoin de la police, celle de pygame fonctionne.
[minwii.git] / src / minwii / start_win.py
index 0e6e61a2db5e2718e6ab0911784b509cd38e3147..54314ce73beaaba5929018b230c438939082fdc1 100755 (executable)
@@ -11,11 +11,11 @@ import pygame
 from minwii.app import MinWii
 
 
-def main(wiimoteSupport) :
+def main(wiimoteSupport, fullscreen) :
     pygame.init()
-    minwii = MinWii(wiimoteSupport=wiimoteSupport)
+    minwii = MinWii(wiimoteSupport=wiimoteSupport, fullscreen=fullscreen)
     minwii.run()
     pygame.quit()   
 
 if __name__ == "__main__" :
-    main(False)
+    main(True, True)