[Scummvm-cvs-logs] SF.net SVN: scummvm: [26356] scummvm/trunk/engines/sky/compact.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sun Apr 1 19:13:45 CEST 2007


Revision: 26356
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26356&view=rev
Author:   fingolfin
Date:     2007-04-01 10:13:45 -0700 (Sun, 01 Apr 2007)

Log Message:
-----------
Fixed a compiler warning about 'unknown conversion type character' (not sure if the statement was meant this way or another, but at least for now I can again compile with -Werror)

Modified Paths:
--------------
    scummvm/trunk/engines/sky/compact.cpp

Modified: scummvm/trunk/engines/sky/compact.cpp
===================================================================
--- scummvm/trunk/engines/sky/compact.cpp	2007-04-01 17:07:05 UTC (rev 26355)
+++ scummvm/trunk/engines/sky/compact.cpp	2007-04-01 17:13:45 UTC (rev 26356)
@@ -267,7 +267,7 @@
 	assert(((cptId >> 12) < _numDataLists) && ((cptId & 0xFFF) < _dataListLen[cptId >> 12]));
 	
 	if (gDebugLevel >= 8) {
-		debug(8, "Loading Compact %s [%s] (%04=%d,%d)", _cptNames[cptId >> 12][cptId & 0xFFF], nameForType(_cptTypes[cptId >> 12][cptId & 0xFFF]), cptId >> 12, cptId & 0xFFF);
+		debug(8, "Loading Compact %s [%s] (%04d,%d)", _cptNames[cptId >> 12][cptId & 0xFFF], nameForType(_cptTypes[cptId >> 12][cptId & 0xFFF]), cptId >> 12, cptId & 0xFFF);
 	}		
 
 	return _compacts[cptId >> 12][cptId & 0xFFF];


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