Update of /cvsroot/freevo/freevo/src/games
In directory sc8-pr-cvs1:/tmp/cvs-serv6242

Modified Files:
        game.py 
Log Message:
Bugfix for xmame.x11.  Since our new process code xmame will go defunct after
exit and Freevo will hang.  This used to happen with xmame.SDL and the 
wait() call I am removing was the solution.  I hope that is no longer needed
without runapp.


Index: game.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/games/game.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** game.py     13 Sep 2003 10:08:22 -0000      1.11
--- game.py     23 Oct 2003 00:30:42 -0000      1.12
***************
*** 10,13 ****
--- 10,19 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.12  2003/10/23 00:30:42  rshortt
+ # Bugfix for xmame.x11.  Since our new process code xmame will go defunct after
+ # exit and Freevo will hang.  This used to happen with xmame.SDL and the
+ # wait() call I am removing was the solution.  I hope that is no longer needed
+ # without runapp.
+ #
  # Revision 1.11  2003/09/13 10:08:22  dischi
  # i18n support
***************
*** 168,172 ****
                  osd.stopdisplay()     
                  self.app = GameApp(self.command)
!                 self.app.child.wait()
  
                  if config.OSD_SDL_EXEC_AFTER_STARTUP:
--- 174,184 ----
                  osd.stopdisplay()     
                  self.app = GameApp(self.command)
! 
!                 while self.mode == 'play' and self.app.isAlive():
!                     time.sleep(0.5)
! 
!                 print('Game_Thread::run: GAME OVER')
! 
!                 self.app.kill()
  
                  if config.OSD_SDL_EXEC_AFTER_STARTUP:




-------------------------------------------------------
This SF.net email is sponsored by OSDN developer relations
Here's your chance to show off your extensive product knowledge
We want to know what you know. Tell us and you have a chance to win $100
http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to