aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/console.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 4c4dfb3260..97a6164d53 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -3479,9 +3479,7 @@ bool Console::cmdTrace(int argc, const char **argv) {
bool Console::cmdStepOver(int argc, const char **argv) {
_debugState.seeking = kDebugSeekStepOver;
_debugState.seekLevel = _engine->_gamestate->_executionStack.size();
- _debugState.debugging = true;
-
- return cmdExit(0, 0);
+ return cmdTrace(argc, argv);
}
bool Console::cmdStepEvent(int argc, const char **argv) {