diff options
| author | Max Horn | 2003-06-30 10:22:04 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-06-30 10:22:04 +0000 | 
| commit | c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2 (patch) | |
| tree | 551af4389ceac39ada7d17bcde699eca9a4dc549 | |
| parent | 7c8565fa65789576959e67d54e4032780dffc723 (diff) | |
| download | scummvm-rg350-c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2.tar.gz scummvm-rg350-c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2.tar.bz2 scummvm-rg350-c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2.zip | |
fix for bug #743049; might cause regressions, but might also fix e.g. walk script issues
svn-id: r8673
| -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;  	}  } | 
