aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruruk2013-07-25 23:38:06 +0200
committeruruk2013-07-25 23:38:06 +0200
commit9a26bb502f69b6e51b34c18e9784bcdf7379af06 (patch)
tree208cfb6493a085fa59b1fd924497358a55b40528
parent37ea01644ababf4ab432fc43bea36347a3b6180e (diff)
downloadscummvm-rg350-9a26bb502f69b6e51b34c18e9784bcdf7379af06.tar.gz
scummvm-rg350-9a26bb502f69b6e51b34c18e9784bcdf7379af06.tar.bz2
scummvm-rg350-9a26bb502f69b6e51b34c18e9784bcdf7379af06.zip
AVALANCHE: Remove parenthesis and add comment to Avalot::run().
-rw-r--r--engines/avalanche/avalot.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp
index d4700ea8d4..6c49a669a1 100644
--- a/engines/avalanche/avalot.cpp
+++ b/engines/avalanche/avalot.cpp
@@ -210,8 +210,8 @@ void Avalot::run(Common::String arg) {
_vm->_graphics->refreshScreen(); // TODO: Maybe it'll have a better place later. Move it there when it's needed.
uint32 delay = _vm->_system->getMillis() - beginLoop;
- if ((delay) <= 55)
- _vm->_system->delayMillis(55 - delay); // Replaces _vm->_gyro->slowdown();
+ if (delay <= 55)
+ _vm->_system->delayMillis(55 - delay); // Replaces _vm->_gyro->slowdown(); 55 comes from 18.2 Hz (B Flight).
} while (! _vm->_gyro->lmo);