diff options
-rw-r--r-- | scumm/actor.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index aa7f2ff0f3..beb1178f67 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -724,12 +724,8 @@ void Actor::turnToDirection(int newdir) moving &= ~MF_TURN; if (newdir != facing) { - moving = MF_TURN; + moving |= MF_TURN; newDirection = newdir; - - // FIXME - workaround for bug #558236 - if (_vm->_gameId == GID_INDY4 && room == 39 && x == 617 && y == 125 && newdir == 180) - startAnimActor(standFrame); } } |