aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEugene Sandulenko2007-02-13 20:34:17 +0000
committerEugene Sandulenko2007-02-13 20:34:17 +0000
commit151be65ca3d8c7ff100c67a16dc6e16b7a2d457b (patch)
treec843539784b318d870084b16553487836daf089a /common
parentd90fc8914cde2a7e359a01ade986f6a0cbca1c5d (diff)
downloadscummvm-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.h2
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 {