[Scummvm-cvs-logs] SF.net SVN: scummvm: [30244] tools/trunk/descumm-tool.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat Jan 5 14:31:12 CET 2008


Revision: 30244
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30244&view=rev
Author:   thebluegr
Date:     2008-01-05 05:31:11 -0800 (Sat, 05 Jan 2008)

Log Message:
-----------
Fixed an MSVC warning

Modified Paths:
--------------
    tools/trunk/descumm-tool.cpp

Modified: tools/trunk/descumm-tool.cpp
===================================================================
--- tools/trunk/descumm-tool.cpp	2008-01-05 13:01:37 UTC (rev 30243)
+++ tools/trunk/descumm-tool.cpp	2008-01-05 13:31:11 UTC (rev 30244)
@@ -266,7 +266,7 @@
 			g_scriptStart += 4;
 		}
 	} else if (g_options.scriptVersion >= 5) {
-		if (g_scriptSize < (g_options.scriptVersion == 5 ? 8 : 9)) {
+		if (g_scriptSize < (uint)(g_options.scriptVersion == 5 ? 8 : 9)) {
 			error("File too small to be a script");
 		}
 	


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