diff options
author | Max Horn | 2002-07-08 13:44:00 +0000 |
---|---|---|
committer | Max Horn | 2002-07-08 13:44:00 +0000 |
commit | 0ea6fac17425829dedb940597d0d461407dbb6ad (patch) | |
tree | c044662e0ab9960f2f6d8651d20062f838b31c7b | |
parent | 6538be45fa7e21036515aa63da6f5b384de52198 (diff) | |
download | scummvm-rg350-0ea6fac17425829dedb940597d0d461407dbb6ad.tar.gz scummvm-rg350-0ea6fac17425829dedb940597d0d461407dbb6ad.tar.bz2 scummvm-rg350-0ea6fac17425829dedb940597d0d461407dbb6ad.zip |
fixed my bogus QNX fix :-)
svn-id: r4495
-rw-r--r-- | actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ int Actor::calcMovementFactor(int newX, int newY) YXFactor = 0; } - if ((uint) abs((double)(XYFactor >> 16)) > speedx) { + if ((uint) abs((int)(XYFactor >> 16)) > speedx) { XYFactor = speedx << 16; if (diffX < 0) XYFactor = -XYFactor; |