diff options
-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; |