From 151be65ca3d8c7ff100c67a16dc6e16b7a2d457b Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 13 Feb 2007 20:34:17 +0000 Subject: [PATCH] Kill MSVC warning: warning C4245: 'initializing' : conversion from 'Common::ADGameFlags' to 'uint32', signed/unsigned mismatch svn-id: r25557 --- common/advancedDetector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/advancedDetector.h b/common/advancedDetector.h index 431b7466b3c..4ce9af8abfb 100644 --- a/common/advancedDetector.h +++ b/common/advancedDetector.h @@ -39,7 +39,7 @@ struct ADGameFileDescription { enum ADGameFlags { ADGF_NO_FLAGS = 0, - ADGF_DEMO = 1 << 31 + ADGF_DEMO = (1 << 30) }; struct ADGameDescription {