[Scummvm-cvs-logs] SF.net SVN: scummvm:[45375] scummvm/trunk/engines/sci/engine/kmisc.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Sun Oct 25 21:03:10 CET 2009


Revision: 45375
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45375&view=rev
Author:   m_kiewitz
Date:     2009-10-25 20:03:10 +0000 (Sun, 25 Oct 2009)

Log Message:
-----------
SCI: kGameIsRestarting - changing speed throttler to 10 msecs, lsl5 is still "somewhat" playable, codename iceman and qfg2 didnt show some animations cause of the higher delay

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kmisc.cpp

Modified: scummvm/trunk/engines/sci/engine/kmisc.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kmisc.cpp	2009-10-25 19:49:09 UTC (rev 45374)
+++ scummvm/trunk/engines/sci/engine/kmisc.cpp	2009-10-25 20:03:10 UTC (rev 45375)
@@ -57,9 +57,10 @@
 			s->restarting_flags &= ~SCI_GAME_WAS_RESTARTED;
 	}
 
+	
 	uint32 curTime = g_system->getMillis();
 	uint32 duration = curTime - s->_lastAnimateTime;
-	uint32 neededSleep = 30;
+	uint32 neededSleep = 10;
 
 	if (duration < neededSleep) {
 		gfxop_sleep(s->gfx_state, neededSleep - duration);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list