diff options
author | Eugene Sandulenko | 2005-08-11 21:37:04 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-08-11 21:37:04 +0000 |
commit | 1c57342cc8244b19819ee4e8e446f2eee2d9d16c (patch) | |
tree | d3686cd8b1a5e883fd94e8140c17eb41ccc2a5cc | |
parent | c1591bebc48b770c8d298adb5918bb7377083f11 (diff) | |
download | scummvm-rg350-1c57342cc8244b19819ee4e8e446f2eee2d9d16c.tar.gz scummvm-rg350-1c57342cc8244b19819ee4e8e446f2eee2d9d16c.tar.bz2 scummvm-rg350-1c57342cc8244b19819ee4e8e446f2eee2d9d16c.zip |
Clarify message about unknown MD5 and don't make false alarms.
svn-id: r18666
-rw-r--r-- | saga/game.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/saga/game.cpp b/saga/game.cpp index b641fb9b43..fba61c6d5f 100644 --- a/saga/game.cpp +++ b/saga/game.cpp @@ -1388,9 +1388,9 @@ int detectGame(const FSList &fslist, bool mode, int start) { } } - if (!filesMD5.isEmpty()) { - printf("MD5s of your ITE version are unknown. Please, report following data to\n"); - printf("ScummVM team along with your ITE version:\n"); + if (!filesMD5.isEmpty() && start == -1) { + printf("MD5s of your game version are unknown. Please, report following data to\n"); + printf("ScummVM team along with your game name and version:\n"); for (StringMap::const_iterator file = filesMD5.begin(); file != filesMD5.end(); ++file) printf("%s: %s\n", file->_key.c_str(), file->_value.c_str()); |