[Scummvm-cvs-logs] SF.net SVN: scummvm: [25557] scummvm/trunk/common/advancedDetector.h

sev at users.sourceforge.net sev at users.sourceforge.net
Tue Feb 13 21:34:18 CET 2007


Revision: 25557
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25557&view=rev
Author:   sev
Date:     2007-02-13 12:34:17 -0800 (Tue, 13 Feb 2007)

Log Message:
-----------
Kill MSVC warning:
warning C4245: 'initializing' : conversion from 'Common::ADGameFlags' to 'uint32', signed/unsigned mismatch

Modified Paths:
--------------
    scummvm/trunk/common/advancedDetector.h

Modified: scummvm/trunk/common/advancedDetector.h
===================================================================
--- scummvm/trunk/common/advancedDetector.h	2007-02-13 19:55:20 UTC (rev 25556)
+++ scummvm/trunk/common/advancedDetector.h	2007-02-13 20:34:17 UTC (rev 25557)
@@ -39,7 +39,7 @@
 
 enum ADGameFlags {
 	ADGF_NO_FLAGS = 0,
-	ADGF_DEMO = 1 << 31
+	ADGF_DEMO = (1 << 30)
 };
 
 struct ADGameDescription {


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