From 99d2f23ab3bc45a14e7ada54b32fa5f99fe21f8e Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 29 Aug 2010 11:10:18 +0000 Subject: SCI: fixed debug output svn-id: r52438 --- engines/sci/engine/kfile.cpp | 4 ++-- 1 file 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]; } } -- cgit v1.2.3