From daa8d57a866e2866369e432cf1d624179edc8875 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 27 May 2014 02:04:07 +0200 Subject: ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf. --- engines/fullpipe/console.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/fullpipe/console.cpp') diff --git a/engines/fullpipe/console.cpp b/engines/fullpipe/console.cpp index cb76345d66..3ff84dae5f 100644 --- a/engines/fullpipe/console.cpp +++ b/engines/fullpipe/console.cpp @@ -34,8 +34,8 @@ Console::Console(FullpipeEngine *vm) : GUI::Debugger(), _vm(vm) { bool Console::Cmd_Scene(int argc, const char **argv) { if (argc != 2) { int sceneTag = _vm->_currentScene->_sceneId; - DebugPrintf("Current scene: %d (scene tag: %d)\n", _vm->getSceneFromTag(sceneTag), sceneTag); - DebugPrintf("Use %s to change the current scene\n", argv[0]); + debugPrintf("Current scene: %d (scene tag: %d)\n", _vm->getSceneFromTag(sceneTag), sceneTag); + debugPrintf("Use %s to change the current scene\n", argv[0]); return true; } else { int scene = _vm->convertScene(atoi(argv[1])); -- cgit v1.2.3 From ae4ffe01f0e4354938714c546034cd0f9806bfc3 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 27 May 2014 02:04:08 +0200 Subject: ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd. --- engines/fullpipe/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/fullpipe/console.cpp') diff --git a/engines/fullpipe/console.cpp b/engines/fullpipe/console.cpp index 3ff84dae5f..dd3d1bf693 100644 --- a/engines/fullpipe/console.cpp +++ b/engines/fullpipe/console.cpp @@ -28,7 +28,7 @@ namespace Fullpipe { Console::Console(FullpipeEngine *vm) : GUI::Debugger(), _vm(vm) { - DCmd_Register("scene", WRAP_METHOD(Console, Cmd_Scene)); + registerCmd("scene", WRAP_METHOD(Console, Cmd_Scene)); } bool Console::Cmd_Scene(int argc, const char **argv) { -- cgit v1.2.3