DETECTOR: Remove kADFlagPrintWarningOnFileBasedFallback

This commit is contained in:
Max Horn 2011-06-14 18:15:47 +02:00
parent 01f806c2db
commit 5016645345
3 changed files with 18 additions and 20 deletions

View file

@ -511,19 +511,6 @@ const ADGameDescription *AdvancedMetaEngine::detectGameFilebased(const FileMap &
}
}
if (matchedDesc) { // We got a match
if (_flags & kADFlagPrintWarningOnFileBasedFallback) {
Common::String report = Common::String::format(_("Your game version has been detected using "
"filename matching as a variant of %s."), matchedDesc->gameid);
report += "\n";
report += _("If this is an original and unmodified version, please report any");
report += "\n";
report += _("information previously printed by ScummVM to the team.");
report += "\n";
g_system->logMessage(LogMessageType::kInfo, report.c_str());
}
}
return matchedDesc;
}