diff options
author | Travis Howell | 2004-01-13 05:30:46 +0000 |
---|---|---|
committer | Travis Howell | 2004-01-13 05:30:46 +0000 |
commit | 73d73982afb9ab2f879c7bf00fe6e216137c3328 (patch) | |
tree | cce92de7d9f0e12e9929f42d6fb64e73e575303c | |
parent | d758f12fcc988a886b708dedaaedf913fee237df (diff) | |
download | scummvm-rg350-73d73982afb9ab2f879c7bf00fe6e216137c3328.tar.gz scummvm-rg350-73d73982afb9ab2f879c7bf00fe6e216137c3328.tar.bz2 scummvm-rg350-73d73982afb9ab2f879c7bf00fe6e216137c3328.zip |
Revert last change, misread code.
svn-id: r12355
-rw-r--r-- | scumm/actor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 32c839cf35..1787f44f1f 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -472,8 +472,7 @@ void Actor::startAnimActor(int f) { } } else { assert(f != 0x3E); - // Not sure if this should apply to samnmax - frame = (_vm->_version == 6) ? 0: f; + frame = f; if (isInCurrentRoom() && costume != 0) { animProgress = 0; |