aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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];
}
}