diff options
author | Travis Howell | 2003-12-28 10:39:39 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-28 10:39:39 +0000 |
commit | 28199bc8401dbadab9c0d9ab14dcc8559ddc6bbe (patch) | |
tree | a0b9219ec649c416f173b6f6e4b65d5a9d6d93c9 | |
parent | 7bf0cc2a98f05429f6504573dad22496160086d8 (diff) | |
download | scummvm-rg350-28199bc8401dbadab9c0d9ab14dcc8559ddc6bbe.tar.gz scummvm-rg350-28199bc8401dbadab9c0d9ab14dcc8559ddc6bbe.tar.bz2 scummvm-rg350-28199bc8401dbadab9c0d9ab14dcc8559ddc6bbe.zip |
Putt Putt games use old calculation
svn-id: r11993
-rw-r--r-- | scumm/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index d77f6bac20..5337939028 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -483,7 +483,7 @@ void Actor::startAnimActor(int f) { void Actor::animateActor(int anim) { int cmd, dir; - if (_vm->_features & GF_NEW_COSTUMES) { + if ((_vm->_features & GF_NEW_COSTUMES) && !(_vm->_features & GF_HUMONGOUS)) { if (anim == 0xFF) anim = 2000; |