diff options
-rw-r--r-- | scumm/actor.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index cb8ea153ff..a400c8e552 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -762,6 +762,11 @@ void Actor::showActor() { } costumeNeedsInit = false; } + + // FIXME: Evil hack to work around bug #770717 + if (!moving && _vm->_version <= 2) + startAnimActor(standFrame); + moving = 0; visible = true; needRedraw = true; |