Only do the file based fallback when no matches by MD5s were found

svn-id: r25394
This commit is contained in:
Sven Hesse 2007-02-05 14:22:10 +00:00
parent 7f26069f69
commit 193349fd60

View file

@ -414,7 +414,11 @@ static ADList detectGame(const FSList *fslist, const Common::ADParams &params, L
}
}
if (!filesMD5.empty() && matched.empty()) {
// We've found a match
if (!matched.empty())
return matched;
if (!filesMD5.empty()) {
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");