aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/mohawk/console.cpp3
1 files changed, 3 insertions, 0 deletions
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;
}