aboutsummaryrefslogtreecommitdiff
path: root/kyra
diff options
context:
space:
mode:
Diffstat (limited to 'kyra')
-rw-r--r--kyra/kyra.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/kyra/kyra.cpp b/kyra/kyra.cpp
index 242395e75c..b7875cb76a 100644
--- a/kyra/kyra.cpp
+++ b/kyra/kyra.cpp
@@ -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;
}
}