From e1483a6eac96c0ae93e7302eb9baa42b6f94a2ef Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 1 Jul 2003 12:08:22 +0000 Subject: Fix for bug #763709: DIG: Recent walk regression svn-id: r8685 --- scumm/actor.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 51a27f30c1..3002df55f5 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -730,7 +730,10 @@ void Actor::turnToDirection(int newdir) { moving &= ~MF_TURN; if (newdir != facing) { - moving = MF_TURN; + if (_vm->_version <= 3) + moving = MF_TURN; + else + moving |= MF_TURN; newDirection = newdir; } } -- cgit v1.2.3