aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.h
diff options
context:
space:
mode:
authorJames Brown2002-12-20 13:50:24 +0000
committerJames Brown2002-12-20 13:50:24 +0000
commit4e373ef467187a66edccc05daadeb0e83a09f0e7 (patch)
treed4dea4a0edfb45a22c663264d431023263ea5e20 /scumm/debugger.h
parent799da2baeff6dc35990bfbf85fa4531c1b3bc8ed (diff)
downloadscummvm-rg350-4e373ef467187a66edccc05daadeb0e83a09f0e7.tar.gz
scummvm-rg350-4e373ef467187a66edccc05daadeb0e83a09f0e7.tar.bz2
scummvm-rg350-4e373ef467187a66edccc05daadeb0e83a09f0e7.zip
Add room command to debugger
svn-id: r6029
Diffstat (limited to 'scumm/debugger.h')
-rw-r--r--scumm/debugger.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/debugger.h b/scumm/debugger.h
index 3c80fe4699..b3972ed2b4 100644
--- a/scumm/debugger.h
+++ b/scumm/debugger.h
@@ -26,7 +26,7 @@
class Scumm;
class ScummDebugger;
-typedef bool (ScummDebugger::*DebugProc)();
+typedef bool (ScummDebugger::*DebugProc)(char parm[255][255]);
enum {
DVAR_INT,
@@ -68,7 +68,8 @@ protected:
bool RunCommand(char *input);
// Commands
- bool Cmd_Exit();
+ bool Cmd_Exit(char _parameter[255][255]);
+ bool Cmd_Room(char _parameter[255][255]);
#ifdef USE_CONSOLE
static bool ScummDebugger::debuggerInputCallback(ConsoleDialog *console, const char *input, void *refCon);