aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
diff options
context:
space:
mode:
authorJohannes Schickel2014-05-27 02:04:08 +0200
committerJohannes Schickel2014-05-27 02:04:08 +0200
commitae4ffe01f0e4354938714c546034cd0f9806bfc3 (patch)
treebcad89a0dc397e95b08b5d5bf84b4d2aeb8dcf9c /engines/cine
parent0adca2c579c29274f3c76bfe88b80b8ba9df26da (diff)
downloadscummvm-rg350-ae4ffe01f0e4354938714c546034cd0f9806bfc3.tar.gz
scummvm-rg350-ae4ffe01f0e4354938714c546034cd0f9806bfc3.tar.bz2
scummvm-rg350-ae4ffe01f0e4354938714c546034cd0f9806bfc3.zip
ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd.
Diffstat (limited to 'engines/cine')
-rw-r--r--engines/cine/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/console.cpp b/engines/cine/console.cpp
index 82197693d4..4646bdf280 100644
--- a/engines/cine/console.cpp
+++ b/engines/cine/console.cpp
@@ -29,7 +29,7 @@ bool labyrinthCheat;
CineConsole::CineConsole(CineEngine *vm) : GUI::Debugger(), _vm(vm) {
assert(_vm);
- DCmd_Register("labyrinthCheat", WRAP_METHOD(CineConsole, Cmd_LabyrinthCheat));
+ registerCmd("labyrinthCheat", WRAP_METHOD(CineConsole, Cmd_LabyrinthCheat));
labyrinthCheat = false;
}