diff options
author | Max Horn | 2003-01-07 20:21:39 +0000 |
---|---|---|
committer | Max Horn | 2003-01-07 20:21:39 +0000 |
commit | 2d97c1f40c58c5afb6805162ee33690d7d0f73d2 (patch) | |
tree | 5eb01acb4431d9705a3385b5f5d5f9b96618cfc1 | |
parent | eaf2e1a31326e65538816c9c4c799bd16c58dcdb (diff) | |
download | scummvm-rg350-2d97c1f40c58c5afb6805162ee33690d7d0f73d2.tar.gz scummvm-rg350-2d97c1f40c58c5afb6805162ee33690d7d0f73d2.tar.bz2 scummvm-rg350-2d97c1f40c58c5afb6805162ee33690d7d0f73d2.zip |
fixed regression caused by changes to akos code
svn-id: r6353
-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 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); |