diff options
-rw-r--r-- | scumm/actor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 92bbabcf0d..54ec3e8a76 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -754,8 +754,10 @@ void Actor::showActor() { if (costumeNeedsInit) { startAnimActor(initFrame); - if (_vm->_features & GF_AFTER_V2) + if (_vm->_features & GF_AFTER_V2) { startAnimActor(standFrame); + startAnimActor(talkFrame2); + } costumeNeedsInit = false; } moving = 0; |