From be8d719a1a882792d3a28a2eb0f98f9ce442bbfd Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 30 Aug 2014 14:25:07 -0400 Subject: ACCESS: Fix ending game when a conversation is active --- engines/access/scripts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/access/scripts.cpp b/engines/access/scripts.cpp index 3b03a7ac41..e74b1853a0 100644 --- a/engines/access/scripts.cpp +++ b/engines/access/scripts.cpp @@ -101,7 +101,7 @@ int Scripts::executeScript() { assert(_scriptCommand >= 0x80); executeCommand(_scriptCommand - 0x80); - } while (!_endFlag); + } while (!_endFlag && !_vm->shouldQuit()); return _returnCode; } -- cgit v1.2.3