aboutsummaryrefslogtreecommitdiff
path: root/gui/debugger.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2014-09-07 18:30:40 +0200
committerTorbjörn Andersson2014-09-07 18:30:40 +0200
commit37aa4c2d5955f7558bb06e89e50f017d6a87eac6 (patch)
tree0489741f07b5fcffc1246fec08e1ca05fc02dd85 /gui/debugger.cpp
parentce37e489f83d8f33af36bc09cefa4352e827ec03 (diff)
downloadscummvm-rg350-37aa4c2d5955f7558bb06e89e50f017d6a87eac6.tar.gz
scummvm-rg350-37aa4c2d5955f7558bb06e89e50f017d6a87eac6.tar.bz2
scummvm-rg350-37aa4c2d5955f7558bb06e89e50f017d6a87eac6.zip
DEBUGGER: Changed usage output from "md5mac"
I don't know of any good way of transforming file names to base file names, so document that "md5mac" expects the base file name. Even though it currently will accept MacBinary file names.
Diffstat (limited to 'gui/debugger.cpp')
-rw-r--r--gui/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index 5db2b97523..48acda17ad 100644
--- a/gui/debugger.cpp
+++ b/gui/debugger.cpp
@@ -548,7 +548,7 @@ bool Debugger::cmdMd5(int argc, const char **argv) {
bool Debugger::cmdMd5Mac(int argc, const char **argv) {
if (argc < 2) {
- debugPrintf("md5mac <filename>\n");
+ debugPrintf("md5mac <base filename>\n");
} else {
// Assume that spaces are part of a single filename.
Common::String filename = argv[1];