diff options
-rw-r--r-- | scumm/actor.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 771405131d..db631b8930 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -78,6 +78,13 @@ void Actor::initActor(int mode) { talk_script = 0; if (_vm) { + if (_vm->_features & GF_AFTER_V2) { + initFrame = 1; + walkFrame = 0; + standFrame = 1; + talkFrame1 = 5; + talkFrame2 = 4; + } _vm->_classData[number] = (_vm->_features & GF_AFTER_V7) ? _vm->_classData[0] : 0; } } |