aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-05-01 10:24:47 +0000
committerTorbjörn Andersson2004-05-01 10:24:47 +0000
commite830d35a21fda5e28bcc290b37a922dbf4114224 (patch)
treeb7605244fc22e1615539121bc57ddea5a2a1e9b5 /sword2
parentd82c9bd6402cbccac5659868058dac21be83a72a (diff)
downloadscummvm-rg350-e830d35a21fda5e28bcc290b37a922dbf4114224.tar.gz
scummvm-rg350-e830d35a21fda5e28bcc290b37a922dbf4114224.tar.bz2
scummvm-rg350-e830d35a21fda5e28bcc290b37a922dbf4114224.zip
Made the "debugoff" console command actually turn *off* the debug info.
svn-id: r13704
Diffstat (limited to 'sword2')
-rw-r--r--sword2/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/console.cpp b/sword2/console.cpp
index b96394a0dd..1bd521761b 100644
--- a/sword2/console.cpp
+++ b/sword2/console.cpp
@@ -91,7 +91,7 @@ Debugger::Debugger(Sword2Engine *vm)
DCmd_Register("rect", &Debugger::Cmd_Rect);
DCmd_Register("clear", &Debugger::Cmd_Clear);
DCmd_Register("debugon", &Debugger::Cmd_DebugOn);
- DCmd_Register("debugoff", &Debugger::Cmd_DebugOn);
+ DCmd_Register("debugoff", &Debugger::Cmd_DebugOff);
DCmd_Register("saverest", &Debugger::Cmd_SaveRest);
DCmd_Register("timeon", &Debugger::Cmd_TimeOn);
DCmd_Register("timeoff", &Debugger::Cmd_TimeOff);