diff options
-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 60a3ff0bc6..aee774b485 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -471,7 +471,7 @@ void Actor::startAnimActor(int f) { animProgress = 0; cost.animCounter = 0; needRedraw = true; - if (f == initFrame) + if (_vm->_version >= 3 && f == initFrame) cost.reset(); _vm->cost_decodeData(this, f, (uint) - 1); } |