if self.fullscreen :
displayFlags = displayFlags | pygame.FULLSCREEN
pygame.display.set_mode(self.screenResolution, displayFlags)
- pygame.display.set_caption('MINWii')
+ pygame.display.set_caption('MINDs')
WT = self.WT
- songFile, playMode, displayNotes, wiimoteIndex = '', 'NORMAL', True, 0
+ # valeurs par défaut des options
+ songFile, playMode, displayNotes, wiimoteIndex = '', 'NORMAL', False, 0
while True :
WT.resume()
def main() :
app = Application()
- app.master.title("Analyseur des sessions MINWii")
+ app.master.title("Analyseur des sessions MINDs")
app.mainloop()
if __name__ == '__main__' :