diff options
author | Johannes Schickel | 2014-05-27 02:04:07 +0200 |
---|---|---|
committer | Johannes Schickel | 2014-05-27 02:04:07 +0200 |
commit | daa8d57a866e2866369e432cf1d624179edc8875 (patch) | |
tree | 0313eab9efb85357bb78310d7fcd5615dc20d432 /engines/pegasus | |
parent | d0f5184edd101e76dd9ad96a2e68c5cc69a662a7 (diff) | |
download | scummvm-rg350-daa8d57a866e2866369e432cf1d624179edc8875.tar.gz scummvm-rg350-daa8d57a866e2866369e432cf1d624179edc8875.tar.bz2 scummvm-rg350-daa8d57a866e2866369e432cf1d624179edc8875.zip |
ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf.
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/console.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/pegasus/console.cpp b/engines/pegasus/console.cpp index 64bd0ba5f2..8a465c58a1 100644 --- a/engines/pegasus/console.cpp +++ b/engines/pegasus/console.cpp @@ -40,7 +40,7 @@ PegasusConsole::~PegasusConsole() { bool PegasusConsole::Cmd_Die(int argc, const char **argv) { if (argc == 1) { - DebugPrintf("Usage: die <death reason>\n"); + debugPrintf("Usage: die <death reason>\n"); return true; } @@ -54,7 +54,7 @@ bool PegasusConsole::Cmd_Die(int argc, const char **argv) { if (invalidReason) { - DebugPrintf("Invalid death reason %d\n", reason); + debugPrintf("Invalid death reason %d\n", reason); return true; } @@ -65,14 +65,14 @@ bool PegasusConsole::Cmd_Die(int argc, const char **argv) { bool PegasusConsole::Cmd_Jump(int argc, const char **argv) { if (!g_interface) { // TODO - DebugPrintf("Cannot jump without interface set up\n"); + debugPrintf("Cannot jump without interface set up\n"); return true; } // TODO: Default room/direction for each neighborhood if (argc < 4) { - DebugPrintf("Usage: jump <neighborhood> <room> <direction>\n"); + debugPrintf("Usage: jump <neighborhood> <room> <direction>\n"); return true; } @@ -82,14 +82,14 @@ bool PegasusConsole::Cmd_Jump(int argc, const char **argv) { if ((neighborhood < kCaldoriaID || neighborhood > kNoradDeltaID || neighborhood == kFinalTSAID) && neighborhood != kNoradSubChaseID) { - DebugPrintf("Invalid neighborhood %d", neighborhood); + debugPrintf("Invalid neighborhood %d", neighborhood); return true; } // No real way to check room validity at this point if (direction > kWest) { - DebugPrintf("Invalid direction %d", direction); + debugPrintf("Invalid direction %d", direction); return true; } |