aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/debugger.h
diff options
context:
space:
mode:
authorTobia Tesan2016-02-29 15:48:59 +0100
committerTobia Tesan2016-03-01 20:40:45 +0100
commitd5d25b0e89faebe4b1c5961d7b1ab872339e4a03 (patch)
tree1495571d94a38311e70f125ac9d561e3a09b58b4 /engines/wintermute/debugger.h
parentdae732814c7c368f74f09174080e9bdd610982d2 (diff)
downloadscummvm-rg350-d5d25b0e89faebe4b1c5961d7b1ab872339e4a03.tar.gz
scummvm-rg350-d5d25b0e89faebe4b1c5961d7b1ab872339e4a03.tar.bz2
scummvm-rg350-d5d25b0e89faebe4b1c5961d7b1ab872339e4a03.zip
WINTERMUTE: Add print and set commands to debugger
Diffstat (limited to 'engines/wintermute/debugger.h')
-rw-r--r--engines/wintermute/debugger.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/wintermute/debugger.h b/engines/wintermute/debugger.h
index 2e427d35db..542403c6ea 100644
--- a/engines/wintermute/debugger.h
+++ b/engines/wintermute/debugger.h
@@ -44,6 +44,8 @@
#define DISABLE_BREAKPOINT_CMD "disable"
#define ENABLE_BREAKPOINT_CMD "enable"
#define INFO_CMD "info"
+#define SET_CMD "set"
+#define PRINT_CMD "print"
#define SET_PATH_CMD "set_path"
#define TOP_CMD "top"
@@ -78,6 +80,8 @@ public:
* (activation record is popped)
*/
bool Cmd_Finish(int argc, const char **argv);
+ bool Cmd_Print(int argc, const char **argv);
+ bool Cmd_Set(int argc, const char **argv);
// Breakpoints
bool Cmd_AddBreakpoint(int argc, const char **argv);
bool Cmd_RemoveBreakpoint(int argc, const char **argv);