[Scummvm-cvs-logs] SF.net SVN: scummvm: [26328] scummvm/trunk/engines/sky/intro.cpp

lavosspawn at users.sourceforge.net lavosspawn at users.sourceforge.net
Fri Mar 30 21:13:23 CEST 2007


Revision: 26328
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26328&view=rev
Author:   lavosspawn
Date:     2007-03-30 12:13:23 -0700 (Fri, 30 Mar 2007)

Log Message:
-----------
BASS is not Counter Strike, so redrawing the screen at 70 fps feels a little pointless. It's also more than the average pal tv set can do ;)

Modified Paths:
--------------
    scummvm/trunk/engines/sky/intro.cpp

Modified: scummvm/trunk/engines/sky/intro.cpp
===================================================================
--- scummvm/trunk/engines/sky/intro.cpp	2007-03-30 17:52:31 UTC (rev 26327)
+++ scummvm/trunk/engines/sky/intro.cpp	2007-03-30 19:13:23 UTC (rev 26328)
@@ -920,11 +920,11 @@
 		nDelay = _relDelay - _system->getMillis();
 		if (nDelay < 0)
 			nDelay = 0;
-		else if (nDelay > 15)
-			nDelay = 15;
+		else if (nDelay > 40)
+			nDelay = 40;
 		_system->delayMillis(nDelay);
 		_system->updateScreen();
-	} while (nDelay == 15);
+	} while (nDelay == 40);
 	return true;
 }
 


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