[Scummvm-cvs-logs] SF.net SVN: scummvm: [31875] scummvm/trunk/engines/made/database.cpp

buddha_ at users.sourceforge.net buddha_ at users.sourceforge.net
Mon May 5 15:11:35 CEST 2008


Revision: 31875
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31875&view=rev
Author:   buddha_
Date:     2008-05-05 06:11:34 -0700 (Mon, 05 May 2008)

Log Message:
-----------
Fixed unsigned/signed mismatch warning.

Modified Paths:
--------------
    scummvm/trunk/engines/made/database.cpp

Modified: scummvm/trunk/engines/made/database.cpp
===================================================================
--- scummvm/trunk/engines/made/database.cpp	2008-05-05 13:09:29 UTC (rev 31874)
+++ scummvm/trunk/engines/made/database.cpp	2008-05-05 13:11:34 UTC (rev 31875)
@@ -263,7 +263,7 @@
 	_gameText = new char[textSize];
 	sourceS.read(_gameText, textSize);
 	// "Decrypt" the text data
-	for (int i = 0; i < textSize; i++)
+	for (uint32 i = 0; i < textSize; i++)
 		_gameText[i] += 0x1E;
 
 	sourceS.seek(objectsOffs);


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