aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
authorMax Horn2003-01-07 20:21:39 +0000
committerMax Horn2003-01-07 20:21:39 +0000
commit2d97c1f40c58c5afb6805162ee33690d7d0f73d2 (patch)
tree5eb01acb4431d9705a3385b5f5d5f9b96618cfc1 /scumm/actor.cpp
parenteaf2e1a31326e65538816c9c4c799bd16c58dcdb (diff)
downloadscummvm-rg350-2d97c1f40c58c5afb6805162ee33690d7d0f73d2.tar.gz
scummvm-rg350-2d97c1f40c58c5afb6805162ee33690d7d0f73d2.tar.bz2
scummvm-rg350-2d97c1f40c58c5afb6805162ee33690d7d0f73d2.zip
fixed regression caused by changes to akos code
svn-id: r6353
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 0cdee51650..18e7d32f80 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -257,7 +257,7 @@ int Actor::updateActorDirection(bool is_walking)
int num;
bool shouldInterpolate;
- dirType = _vm->akos_hasManyDirections(this);
+ dirType = (_vm->_features & GF_AFTER_V7) ? _vm->akos_hasManyDirections(this) : false;
from = toSimpleDir(dirType, facing);
dir = remapDirection(newDirection, is_walking);