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 ccf8ba29f1..51a27f30c1 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -730,7 +730,7 @@ void Actor::turnToDirection(int newdir) { moving &= ~MF_TURN; if (newdir != facing) { - moving |= MF_TURN; + moving = MF_TURN; newDirection = newdir; } } |