aboutsummaryrefslogtreecommitdiff
path: root/kyra
diff options
context:
space:
mode:
authorMax Horn2004-07-31 09:31:15 +0000
committerMax Horn2004-07-31 09:31:15 +0000
commit02e6d64ee7c25aa81255510bf86bf3d32973cc52 (patch)
tree8248897774d16fc06351914e51ed5e1fc4f32515 /kyra
parente7d9bdbee372e8268e34f9f54c46b257e7e805ba (diff)
downloadscummvm-rg350-02e6d64ee7c25aa81255510bf86bf3d32973cc52.tar.gz
scummvm-rg350-02e6d64ee7c25aa81255510bf86bf3d32973cc52.tar.bz2
scummvm-rg350-02e6d64ee7c25aa81255510bf86bf3d32973cc52.zip
Less irritating place for this message
svn-id: r14374
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;
}
}