From 01480f9a00bdc237477f6867c9b6404ec160c3f5 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Fri, 21 Jul 2017 12:23:59 +0200 Subject: MOHAWK: Myst: Fix the quickTest debug command --- engines/mohawk/console.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engines') diff --git a/engines/mohawk/console.cpp b/engines/mohawk/console.cpp index 374e2a51d9..5b810c5cc3 100644 --- a/engines/mohawk/console.cpp +++ b/engines/mohawk/console.cpp @@ -334,6 +334,8 @@ bool MystConsole::Cmd_Resources(int argc, const char **argv) { } bool MystConsole::Cmd_QuickTest(int argc, const char **argv) { + _vm->pauseEngine(false); + // Go through all the ages, all the views and click random stuff for (uint i = 0; i < ARRAYSIZE(mystStackNames); i++) { if (i == 2 || i == 5 || i == 9 || i == 10) continue; @@ -364,6 +366,7 @@ bool MystConsole::Cmd_QuickTest(int argc, const char **argv) { } } + _vm->pauseEngine(true); return true; } -- cgit v1.2.3