aboutsummaryrefslogtreecommitdiff
path: root/engines/m4/console.cpp
diff options
context:
space:
mode:
authorMax Horn2010-11-01 16:03:35 +0000
committerMax Horn2010-11-01 16:03:35 +0000
commita984fb17c2be039502eff55472dd6a252e5570df (patch)
tree1153ae5014aea017e5412d35735f81205e21ead5 /engines/m4/console.cpp
parent2af270442144faec859114bcdce7e5659ac7f24b (diff)
downloadscummvm-rg350-a984fb17c2be039502eff55472dd6a252e5570df.tar.gz
scummvm-rg350-a984fb17c2be039502eff55472dd6a252e5570df.tar.bz2
scummvm-rg350-a984fb17c2be039502eff55472dd6a252e5570df.zip
GUI: Add GCC_PRINTF to GUI::Debugger::DebugPrintf & fix resulting warnings
svn-id: r54007
Diffstat (limited to 'engines/m4/console.cpp')
-rw-r--r--engines/m4/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/m4/console.cpp b/engines/m4/console.cpp
index 32ccdab787..88b4240901 100644
--- a/engines/m4/console.cpp
+++ b/engines/m4/console.cpp
@@ -123,7 +123,7 @@ bool Console::cmdPlaySound(int argc, const char **argv) {
bool Console::cmdPlayDSRSound(int argc, const char **argv) {
if (argc != 2 && argc != 3) {
DebugPrintf("Usage: %s <sound index> <DSR file>\n", argv[0]);
- DebugPrintf("The DSR file parameter is optional, and specifies which DSR to load\n", argv[0]);
+ DebugPrintf("The DSR file parameter is optional, and specifies which DSR to load\n");
} else {
if (argc == 3)
_vm->_sound->loadDSRFile(argv[2]);