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.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/mohawk/console.cpp b/engines/mohawk/console.cpp
index bf1d9b02ce..d5170b2813 100644
--- a/engines/mohawk/console.cpp
+++ b/engines/mohawk/console.cpp
@@ -152,12 +152,13 @@ bool MystConsole::Cmd_ChangeStack(int argc, const char **argv) {
// as the next card could continue playing it if it.
_vm->_sound->stopSound();
- _vm->changeToStack(stackNum - 1);
-
+ uint16 card = 0;
if (argc == 3)
- _vm->changeToCard((uint16)atoi(argv[2]), true);
+ card = (uint16)atoi(argv[2]);
else
- _vm->changeToCard(default_start_card[stackNum - 1], true);
+ card = default_start_card[stackNum - 1];
+
+ _vm->changeToStack(stackNum - 1, card, 0, 0);
return false;
}