aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/console.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/console.cpp')
-rw-r--r--engines/mohawk/console.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mohawk/console.cpp b/engines/mohawk/console.cpp
index 613826e895..e6eab0b495 100644
--- a/engines/mohawk/console.cpp
+++ b/engines/mohawk/console.cpp
@@ -69,7 +69,7 @@ bool MystConsole::Cmd_ChangeCard(int argc, const char **argv) {
}
_vm->_sound->stopSound();
- _vm->changeToCard((uint16)atoi(argv[1]));
+ _vm->changeToCard((uint16)atoi(argv[1]), true);
return false;
}
@@ -161,9 +161,9 @@ bool MystConsole::Cmd_ChangeStack(int argc, const char **argv) {
_vm->changeToStack(stackNum - 1);
if (argc == 3)
- _vm->changeToCard((uint16)atoi(argv[2]));
+ _vm->changeToCard((uint16)atoi(argv[2]), true);
else
- _vm->changeToCard(default_start_card[stackNum - 1]);
+ _vm->changeToCard(default_start_card[stackNum - 1], true);
return false;
}