aboutsummaryrefslogtreecommitdiff
path: root/sky
diff options
context:
space:
mode:
authorNicolas Bacca2003-09-28 22:23:59 +0000
committerNicolas Bacca2003-09-28 22:23:59 +0000
commit6c9476597252d543cccd510ee58645d89060d6a1 (patch)
tree8ca9debe72506a296e49367d54c45d26d2fb06cc /sky
parent17bf7b95aa8fb28dcacbe01a5ff547032ffbea1d (diff)
downloadscummvm-rg350-6c9476597252d543cccd510ee58645d89060d6a1.tar.gz
scummvm-rg350-6c9476597252d543cccd510ee58645d89060d6a1.tar.bz2
scummvm-rg350-6c9476597252d543cccd510ee58645d89060d6a1.zip
Improve intro timing a tiny bit on WinCE
svn-id: r10472
Diffstat (limited to 'sky')
-rw-r--r--sky/control.cpp3
-rw-r--r--sky/sky.cpp3
2 files changed, 6 insertions, 0 deletions
diff --git a/sky/control.cpp b/sky/control.cpp
index 36f115b368..a3d2e3ba7e 100644
--- a/sky/control.cpp
+++ b/sky/control.cpp
@@ -1702,6 +1702,9 @@ void SkyControl::delay(unsigned int amount) {
}
uint this_delay = 20; // 1?
+#ifdef _WIN32_WCE
+ this_delay = 10;
+#endif
if (this_delay > amount)
this_delay = amount;
diff --git a/sky/sky.cpp b/sky/sky.cpp
index 8709522b68..7c8230f14d 100644
--- a/sky/sky.cpp
+++ b/sky/sky.cpp
@@ -465,6 +465,9 @@ void SkyState::delay(uint amount) { //copied and mutilated from Simon.cpp
{
uint this_delay = 20; // 1?
+#ifdef _WIN32_WCE
+ this_delay = 10;
+#endif
if (this_delay > amount)
this_delay = amount;
_system->delay_msecs(this_delay);