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.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/engines/parallaction/debug.cpp b/engines/parallaction/debug.cpp
index b5eb82b456..8864c84e2f 100644
--- a/engines/parallaction/debug.cpp
+++ b/engines/parallaction/debug.cpp
@@ -42,7 +42,6 @@ Debugger::Debugger(Parallaction *vm)
DCmd_Register("zones", WRAP_METHOD(Debugger, Cmd_Zones));
DCmd_Register("animations", WRAP_METHOD(Debugger, Cmd_Animations));
DCmd_Register("globalflags",WRAP_METHOD(Debugger, Cmd_GlobalFlags));
- DCmd_Register("toggleglobalflag",WRAP_METHOD(Debugger, Cmd_ToggleGlobalFlag));
DCmd_Register("localflags", WRAP_METHOD(Debugger, Cmd_LocalFlags));
DCmd_Register("locations", WRAP_METHOD(Debugger, Cmd_Locations));
DCmd_Register("gfxobjects", WRAP_METHOD(Debugger, Cmd_GfxObjects));
@@ -118,32 +117,6 @@ bool Debugger::Cmd_GlobalFlags(int argc, const char **argv) {
return true;
}
-bool Debugger::Cmd_ToggleGlobalFlag(int argc, const char **argv) {
-
- int i;
-
- switch (argc) {
- case 2:
- i = _vm->_globalFlagsNames->lookup(argv[1]);
- if (i == Table::notFound) {
- DebugPrintf("invalid flag '%s'\n", argv[1]);
- } else {
- i--;
- if ((_globalFlags & (1 << i)) == 0)
- _globalFlags |= (1 << i);
- else
- _globalFlags &= ~(1 << i);
- }
- break;
-
- default:
- DebugPrintf("toggleglobalflag <flag name>\n");
-
- }
-
- return true;
-}
-
bool Debugger::Cmd_LocalFlags(int argc, const char **argv) {
uint32 flags = _vm->getLocationFlags();