diff options
author | Chris Apers | 2005-03-11 10:51:18 +0000 |
---|---|---|
committer | Chris Apers | 2005-03-11 10:51:18 +0000 |
commit | a377252fbb3fc013f8101a0caafb95a830f99c2d (patch) | |
tree | 64aafffe8828504d793e74bf5abdbc6463c5aace | |
parent | 8e77e899d0967af3099258e4548f834edb53498b (diff) | |
download | scummvm-rg350-a377252fbb3fc013f8101a0caafb95a830f99c2d.tar.gz scummvm-rg350-a377252fbb3fc013f8101a0caafb95a830f99c2d.tar.bz2 scummvm-rg350-a377252fbb3fc013f8101a0caafb95a830f99c2d.zip |
Not needed any more
svn-id: r17076
-rw-r--r-- | sky/control.cpp | 3 |
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); } |