mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-20 08:48:13 +00:00
Fix Dig regression, small part of code was lost.
svn-id: r14617
This commit is contained in:
parent
5a6590ba7d
commit
9f13a75c79
@ -1273,7 +1273,7 @@ void ScummEngine::stopTalk() {
|
||||
act = getTalkingActor();
|
||||
if (act && act < 0x80) {
|
||||
Actor *a = derefActor(act, "stopTalk");
|
||||
if (a->isInCurrentRoom()) {
|
||||
if (a->isInCurrentRoom() || _version >= 7) {
|
||||
if ((_version >= 7 && !_string[0].no_talk_anim) || (_version <= 6 && _useTalkAnims)) {
|
||||
a->runActorTalkScript(a->talkStopFrame);
|
||||
_useTalkAnims = false;
|
||||
|
Loading…
Reference in New Issue
Block a user