[Scummvm-cvs-logs] CVS: scummvm/sky control.cpp,1.57,1.58 sky.cpp,1.114,1.115

Nicolas Bacca arisme at users.sourceforge.net
Sun Sep 28 15:25:02 CEST 2003


Update of /cvsroot/scummvm/scummvm/sky
In directory sc8-pr-cvs1:/tmp/cvs-serv14515

Modified Files:
	control.cpp sky.cpp 
Log Message:
Improve intro timing a tiny bit on WinCE

Index: control.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/control.cpp,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- control.cpp	24 Sep 2003 06:28:03 -0000	1.57
+++ control.cpp	28 Sep 2003 22:23:59 -0000	1.58
@@ -1702,6 +1702,9 @@
 		}
 
 		uint this_delay = 20; // 1?
+#ifdef _WIN32_WCE
+		this_delay = 10;
+#endif
 		if (this_delay > amount)
 			this_delay = amount;
 

Index: sky.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/sky.cpp,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- sky.cpp	24 Sep 2003 06:28:03 -0000	1.114
+++ sky.cpp	28 Sep 2003 22:23:59 -0000	1.115
@@ -465,6 +465,9 @@
 
 		{
 			uint this_delay = 20; // 1?
+#ifdef _WIN32_WCE
+			this_delay = 10;
+#endif
 			if (this_delay > amount)
 				this_delay = amount;
 			_system->delay_msecs(this_delay);





More information about the Scummvm-git-logs mailing list