aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);