diff options
author | Eugene Sandulenko | 2007-02-13 20:34:17 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-02-13 20:34:17 +0000 |
commit | 151be65ca3d8c7ff100c67a16dc6e16b7a2d457b (patch) | |
tree | c843539784b318d870084b16553487836daf089a /common | |
parent | d90fc8914cde2a7e359a01ade986f6a0cbca1c5d (diff) | |
download | scummvm-rg350-151be65ca3d8c7ff100c67a16dc6e16b7a2d457b.tar.gz scummvm-rg350-151be65ca3d8c7ff100c67a16dc6e16b7a2d457b.tar.bz2 scummvm-rg350-151be65ca3d8c7ff100c67a16dc6e16b7a2d457b.zip |
Kill MSVC warning:
warning C4245: 'initializing' : conversion from 'Common::ADGameFlags' to 'uint32', signed/unsigned mismatch
svn-id: r25557
Diffstat (limited to 'common')
-rw-r--r-- | common/advancedDetector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/advancedDetector.h b/common/advancedDetector.h index 431b7466b3..4ce9af8abf 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 { |