aboutsummaryrefslogtreecommitdiff
path: root/sky
diff options
context:
space:
mode:
authorChris Apers2005-03-11 10:51:18 +0000
committerChris Apers2005-03-11 10:51:18 +0000
commita377252fbb3fc013f8101a0caafb95a830f99c2d (patch)
tree64aafffe8828504d793e74bf5abdbc6463c5aace /sky
parent8e77e899d0967af3099258e4548f834edb53498b (diff)
downloadscummvm-rg350-a377252fbb3fc013f8101a0caafb95a830f99c2d.tar.gz
scummvm-rg350-a377252fbb3fc013f8101a0caafb95a830f99c2d.tar.bz2
scummvm-rg350-a377252fbb3fc013f8101a0caafb95a830f99c2d.zip
Not needed any more
svn-id: r17076
Diffstat (limited to 'sky')
-rw-r--r--sky/control.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/sky/control.cpp b/sky/control.cpp
index 44230cdef5..7041d81a00 100644
--- a/sky/control.cpp
+++ b/sky/control.cpp
@@ -1527,7 +1527,6 @@ void Control::delay(unsigned int amount) {
}
}
-#ifndef __PALM_OS__
uint this_delay = 20; // 1?
#ifdef _WIN32_WCE
this_delay = 10;
@@ -1536,7 +1535,7 @@ void Control::delay(unsigned int amount) {
this_delay = amount;
if (this_delay > 0) _system->delayMillis(this_delay);
-#endif
+
cur = _system->getMillis();
} while (cur < start + amount);
}