SCI: fixed debug output

svn-id: r52438
This commit is contained in:
Filippos Karapetis 2010-08-29 11:10:18 +00:00
parent 6a058892fb
commit 99d2f23ab3

@ -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];
}
}