Only do the file based fallback when no matches by MD5s were found
svn-id: r25394
This commit is contained in:
parent
7f26069f69
commit
193349fd60
1 changed files with 5 additions and 1 deletions
|
@ -414,7 +414,11 @@ static ADList detectGame(const FSList *fslist, const Common::ADParams ¶ms, 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");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue