diff options
author | Max Horn | 2006-05-16 20:00:48 +0000 |
---|---|---|
committer | Max Horn | 2006-05-16 20:00:48 +0000 |
commit | b6b53afe269a2d640b8db33e64ecdd6f9b2f506c (patch) | |
tree | 4069ef255e4c2e86ae9d898fc9cf4cc9ca6c85d1 /engines | |
parent | ba2a6152c7bf6b007ca8ec7a6191416135a35f80 (diff) | |
download | scummvm-rg350-b6b53afe269a2d640b8db33e64ecdd6f9b2f506c.tar.gz scummvm-rg350-b6b53afe269a2d640b8db33e64ecdd6f9b2f506c.tar.bz2 scummvm-rg350-b6b53afe269a2d640b8db33e64ecdd6f9b2f506c.zip |
Tell people to only report the MD5 if it's a regular version of the game (and not e.g. a fan translation)
svn-id: r22495
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/plugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index 129a7f9431..f08804e982 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -1375,7 +1375,8 @@ PluginError Engine_SCUMM_create(OSystem *syst, Engine **engine) { // unknown MD5, or with a medium debug level in case of a known MD5 (for // debugging purposes). if (!findInMD5Table(res.md5.c_str())) { - printf("Unknown MD5 (%s)! Please report the details (language, platform, etc.) of this game to the ScummVM team\n", res.md5.c_str()); + printf("Unknown MD5 (%s)! If this is an official version of the game (and not e.g. a fan made translation), " + "please report the details (language, platform, etc.) of this game to the ScummVM team\n", res.md5.c_str()); } else { debug(1, "Using MD5 '%s'", res.md5.c_str()); } |