Skip to content

Commit

Permalink
HOPKINS: Fix to allow quitting when a conversation is active
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Oct 28, 2012
1 parent a0c26cd commit f1cace3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/hopkins/talk.cpp
Expand Up @@ -367,7 +367,7 @@ int TalkManager::DIALOGUE() {
v6 = 1;
if (v5 == -1)
v6 = 0;
} while (v6 != 1);
} while (!_vm->shouldQuit() && v6 != 1);

_vm->_soundManager.VOICE_MIX(v5, 1);
_vm->_fontManager.TEXTE_OFF(5);
Expand Down

0 comments on commit f1cace3

Please sign in to comment.