diff options
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/console.cpp | 2 |
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; } |