Encore un coup pour préparer la personalisation du comportement des wiimotes.
[minwii.git] / src / minwii / app.py
index d456b8e..5d5d245 100755 (executable)
@@ -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()