aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/debug.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-27 19:58:32 +0000
committerMartin Kiewitz2010-06-27 19:58:32 +0000
commit4653153910ee2186e914f5f4717e212053adef54 (patch)
tree40476be76bd234151f75331d5ad96b3120f6bf4d /engines/sci/debug.h
parent303dc063883dab2dfe30b44d9fad9fe8e3948ec5 (diff)
downloadscummvm-rg350-4653153910ee2186e914f5f4717e212053adef54.tar.gz
scummvm-rg350-4653153910ee2186e914f5f4717e212053adef54.tar.bz2
scummvm-rg350-4653153910ee2186e914f5f4717e212053adef54.zip
SCI: added new command "p" / "stepover" to execute one command, but skip send/calls processing. single-step is now "trace" (alias "s" and "t"), stepping till ret is "step_ret" (alias "pret"), removed unused kDebugSeek
svn-id: r50388
Diffstat (limited to 'engines/sci/debug.h')
-rw-r--r--engines/sci/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/debug.h b/engines/sci/debug.h
index 8383722956..d381e55dc8 100644
--- a/engines/sci/debug.h
+++ b/engines/sci/debug.h
@@ -57,8 +57,8 @@ enum DebugSeeking {
kDebugSeekCallk = 1, // Step forward until callk is found
kDebugSeekLevelRet = 2, // Step forward until returned from this level
kDebugSeekSpecialCallk = 3, // Step forward until a /special/ callk is found
- kDebugSeekSO = 4, // Step forward until specified PC (after the send command) and stack depth
- kDebugSeekGlobal = 5 // Step forward until one specified global variable is modified
+ kDebugSeekGlobal = 4, // Step forward until one specified global variable is modified
+ kDebugSeekStepOver = 5 // Step forward until we reach same stack-level again
};
struct DebugState {