From f1cace39e8fa7def5cc82c6e65ace366101bbf83 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 28 Oct 2012 22:38:19 +1100 Subject: HOPKINS: Fix to allow quitting when a conversation is active --- engines/hopkins/talk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/hopkins/talk.cpp b/engines/hopkins/talk.cpp index 756effbfaf..6dcebecde2 100644 --- a/engines/hopkins/talk.cpp +++ b/engines/hopkins/talk.cpp @@ -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); -- cgit v1.2.3