[Scummvm-cvs-logs] SF.net SVN: scummvm:[35531] scummvm/trunk/graphics/dither.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Dec 24 23:40:10 CET 2008


Revision: 35531
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35531&view=rev
Author:   thebluegr
Date:     2008-12-24 22:40:10 +0000 (Wed, 24 Dec 2008)

Log Message:
-----------
Silenced signed/unsigned warning

Modified Paths:
--------------
    scummvm/trunk/graphics/dither.cpp

Modified: scummvm/trunk/graphics/dither.cpp
===================================================================
--- scummvm/trunk/graphics/dither.cpp	2008-12-24 16:59:37 UTC (rev 35530)
+++ scummvm/trunk/graphics/dither.cpp	2008-12-24 22:40:10 UTC (rev 35531)
@@ -238,7 +238,7 @@
 
 byte SierraLight::dither(byte c1, byte c2, byte c3, uint32 x) {
 	assert(_palLUT);
-	assert(x < _width);
+	assert(x < (uint32)_width);
 
 	int32 eC1, eC2, eC3;
 


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