aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2010-08-29 11:10:18 +0000
committerFilippos Karapetis2010-08-29 11:10:18 +0000
commit99d2f23ab3bc45a14e7ada54b32fa5f99fe21f8e (patch)
treef9e04e70fd6424c2f0e197576b8fc55e628ee726
parent6a058892fbc00821c05703a1aa980ee763c3e673 (diff)
downloadscummvm-rg350-99d2f23ab3bc45a14e7ada54b32fa5f99fe21f8e.tar.gz
scummvm-rg350-99d2f23ab3bc45a14e7ada54b32fa5f99fe21f8e.tar.bz2
scummvm-rg350-99d2f23ab3bc45a14e7ada54b32fa5f99fe21f8e.zip
SCI: fixed debug output
svn-id: r52438
-rw-r--r--engines/sci/engine/kfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp
index fa5bee0003..a76c96cfea 100644
--- a/engines/sci/engine/kfile.cpp
+++ b/engines/sci/engine/kfile.cpp
@@ -826,11 +826,11 @@ reg_t kFileIOOpen(EngineState *s, int argc, reg_t *argv) {
// There should be exactly one match for this search, otherwise throw a warning
if (saveNames.size() == 0) {
- warning("QFG No matches for %s", pattern.c_str());
+ warning("QFG character import: No matches for %s", pattern.c_str());
} else if (saveNames.size() == 1) {
name = saveNames[0];
} else {
- warning("More than 1 matches for %s, using the first one", pattern.c_str());
+ warning("QFG character import: More than 1 matches for %s, using the first one", pattern.c_str());
name = saveNames[0];
}
}