aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/parallaction/debug.cpp')
-rw-r--r--engines/parallaction/debug.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/engines/parallaction/debug.cpp b/engines/parallaction/debug.cpp
index 02ac4f5a38..22b2ac6bec 100644
--- a/engines/parallaction/debug.cpp
+++ b/engines/parallaction/debug.cpp
@@ -45,7 +45,6 @@ Debugger::Debugger(Parallaction *vm)
DCmd_Register("localflags", WRAP_METHOD(Debugger, Cmd_LocalFlags));
DCmd_Register("locations", WRAP_METHOD(Debugger, Cmd_Locations));
DCmd_Register("gfxobjects", WRAP_METHOD(Debugger, Cmd_GfxObjects));
- DCmd_Register("set", WRAP_METHOD(Debugger, Cmd_Set));
DCmd_Register("programs", WRAP_METHOD(Debugger, Cmd_Programs));
}
@@ -204,17 +203,6 @@ bool Debugger::Cmd_GfxObjects(int argc, const char **argv) {
return true;
}
-bool Debugger::Cmd_Set(int argc, const char** argv) {
-
- if (argc < 3) {
- DebugPrintf("set <var name> <value>\n");
- } else {
- _vm->_gfx->setVar(Common::String(argv[1]), atoi(argv[2]));
- }
-
- return true;
-}
-
bool Debugger::Cmd_Programs(int argc, const char** argv) {
ProgramList::iterator b = _vm->_location._programs.begin();