[Scummvm-cvs-logs] SF.net SVN: scummvm:[49705] scummvm/trunk/common/file.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Tue Jun 15 12:19:07 CEST 2010


Revision: 49705
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49705&view=rev
Author:   sev
Date:     2010-06-15 10:19:06 +0000 (Tue, 15 Jun 2010)

Log Message:
-----------
Hid hashed fileopening to debuglevel 8.

Modified Paths:
--------------
    scummvm/trunk/common/file.cpp

Modified: scummvm/trunk/common/file.cpp
===================================================================
--- scummvm/trunk/common/file.cpp	2010-06-15 10:18:51 UTC (rev 49704)
+++ scummvm/trunk/common/file.cpp	2010-06-15 10:19:06 UTC (rev 49705)
@@ -51,11 +51,11 @@
 	SeekableReadStream *stream = 0;
 
 	if ((stream = archive.createReadStreamForMember(filename))) {
-		debug(3, "Opening hashed: %s", filename.c_str());
+		debug(8, "Opening hashed: %s", filename.c_str());
 	} else if ((stream = archive.createReadStreamForMember(filename + "."))) {
 		// WORKAROUND: Bug #1458388: "SIMON1: Game Detection fails"
 		// sometimes instead of "GAMEPC" we get "GAMEPC." (note trailing dot)
-		debug(3, "Opening hashed: %s.", filename.c_str());
+		debug(8, "Opening hashed: %s.", filename.c_str());
 	}
 
 	return open(stream, filename);


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