diff options
author | Chris Apers | 2005-10-12 19:41:57 +0000 |
---|---|---|
committer | Chris Apers | 2005-10-12 19:41:57 +0000 |
commit | 037665a1b305401eef41f555057af252cf656582 (patch) | |
tree | f499aeb89f894fd33ef6b3208985207e90a9127e | |
parent | 27191b258c699e246a5ce6be6f4481b02ff6c73b (diff) | |
download | scummvm-rg350-037665a1b305401eef41f555057af252cf656582.tar.gz scummvm-rg350-037665a1b305401eef41f555057af252cf656582.tar.bz2 scummvm-rg350-037665a1b305401eef41f555057af252cf656582.zip |
Not needed
svn-id: r19038
-rw-r--r-- | sword1/sword1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sword1/sword1.cpp b/sword1/sword1.cpp index 4475198940..9d9e92a34e 100644 --- a/sword1/sword1.cpp +++ b/sword1/sword1.cpp @@ -604,10 +604,10 @@ void SwordEngine::delay(int32 amount) { //copied and mutilated from sky.cpp break; } } -#ifndef __PALM_OS__ + if (amount > 0) _system->delayMillis(10); -#endif + } while (_system->getMillis() < start + amount); } |