[Scummvm-cvs-logs] SF.net SVN: scummvm:[52438] scummvm/trunk/engines/sci/engine/kfile.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Aug 29 13:10:19 CEST 2010


Revision: 52438
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52438&view=rev
Author:   thebluegr
Date:     2010-08-29 11:10:18 +0000 (Sun, 29 Aug 2010)

Log Message:
-----------
SCI: fixed debug output

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kfile.cpp

Modified: scummvm/trunk/engines/sci/engine/kfile.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kfile.cpp	2010-08-29 11:08:27 UTC (rev 52437)
+++ scummvm/trunk/engines/sci/engine/kfile.cpp	2010-08-29 11:10:18 UTC (rev 52438)
@@ -826,11 +826,11 @@
 
 		// 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];
 		}
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list