diff options
Diffstat (limited to 'sword1/sword1.cpp')
-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); } |