aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/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/sci/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/sci/console.cpp')
-rw-r--r--engines/sci/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index deab3dadd8..0dac0729cc 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -761,7 +761,7 @@ bool Console::cmdHexgrep(int argc, const char **argv) {
if (argc < 4) {
DebugPrintf("Searches some resources for a particular sequence of bytes, represented as hexadecimal numbers.\n");
DebugPrintf("Usage: %s <resource type> <resource number> <search string>\n", argv[0]);
- DebugPrintf("<resource number> can be a specific resource number, or \"all\" for all of the resources of the specified type\n", argv[0]);
+ DebugPrintf("<resource number> can be a specific resource number, or \"all\" for all of the resources of the specified type\n");
DebugPrintf("EXAMPLES:\n hexgrep script all e8 03 c8 00\n hexgrep pic 042 fe");
cmdResourceTypes(argc, argv);
return true;