X-Git-Url: https://scm.cri.mines-paristech.fr/git/minwii.git/blobdiff_plain/34e762ab5474402903de7fe2f43644fd7fb85f37..d6f0f1bc75a5e81a24d0b1a2bec08bd2a15e7352:/src/minwii/app.py diff --git a/src/minwii/app.py b/src/minwii/app.py index d456b8e..5d5d245 100755 --- a/src/minwii/app.py +++ b/src/minwii/app.py @@ -51,6 +51,7 @@ class MinWii(object): self.nwiimotes = nwiimotes = pygame_wiimouse.get_count() console.debug('wiimotes found : %d', nwiimotes) self.WT = WT = pygame_wiimouse.WT + WT.setEventCallBack(pygame_wiimouse._default_event_cb) WT.pause() else : self.WT = _WTFacade() @@ -67,6 +68,7 @@ class MinWii(object): songFile, playMode, wiimoteIndex = '', 'NORMAL', 0 while True : + WT.resume() exit, songFile, playMode, wiimoteIndex = \ self.selectSongAndOptions(songFile, playMode, wiimoteIndex) @@ -78,7 +80,6 @@ class MinWii(object): if not instrumentDescription : continue - WT.resume() self.runPlayingScreen(songFile, playMode, instrumentDescription) WT.pause()