Less irritating place for this message

svn-id: r14374
This commit is contained in:
Max Horn 2004-07-31 09:31:15 +00:00
parent e7d9bdbee3
commit 02e6d64ee7

View File

@ -45,14 +45,13 @@ DetectedGameList Engine_KYRA_detectGames(const FSList &fslist) {
DetectedGameList detectedGames;
File test_file;
printf("Detecting Kyra...\n");
// Iterate over all files in the given directory
for (FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) {
const char *name = file->displayName().c_str();
if ((0 == scumm_stricmp("chapter1.vrm", name)) ||
(0 == scumm_stricmp("chapter5.vrm", name))) {
detectedGames.push_back(kyra_setting);
printf("Detecting Kyra...\n");
break;
}
}