aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-06-21 13:06:08 +0000
committerFilippos Karapetis2009-06-21 13:06:08 +0000
commit245a2764fca6bf4ed4798b4e68fd82e4c61bb33c (patch)
treed9868f7bf6c0db45b5322d4ea9c2b1fde0080471 /engines/sci/console.cpp
parentb14fa66f9f7b105d18b00488c9bd620f77082fab (diff)
downloadscummvm-rg350-245a2764fca6bf4ed4798b4e68fd82e4c61bb33c.tar.gz
scummvm-rg350-245a2764fca6bf4ed4798b4e68fd82e4c61bb33c.tar.bz2
scummvm-rg350-245a2764fca6bf4ed4798b4e68fd82e4c61bb33c.zip
Cleanup
svn-id: r41727
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r--engines/sci/console.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 22425e7ab4..2f2fbc5243 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -55,15 +55,6 @@ int g_debug_seeking = 0; // Stepping forward until some special condition is met
int g_debug_seek_special = 0; // Used for special seeks
int g_debug_seek_level = 0; // Used for seekers that want to check their exec stack depth
-enum DebugSeeking {
- kDebugSeekNothing = 0,
- 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
-};
-
Console::Console(SciEngine *vm) : GUI::Debugger() {
_vm = vm;