Kill MSVC warning:

warning C4245: 'initializing' : conversion from 'Common::ADGameFlags' to 'uint32', signed/unsigned mismatch

svn-id: r25557
This commit is contained in:
Eugene Sandulenko 2007-02-13 20:34:17 +00:00
parent d90fc8914c
commit 151be65ca3

View file

@ -39,7 +39,7 @@ struct ADGameFileDescription {
enum ADGameFlags {
ADGF_NO_FLAGS = 0,
ADGF_DEMO = 1 << 31
ADGF_DEMO = (1 << 30)
};
struct ADGameDescription {