Kill MSVC warning:
warning C4245: 'initializing' : conversion from 'Common::ADGameFlags' to 'uint32', signed/unsigned mismatch svn-id: r25557
This commit is contained in:
parent
d90fc8914c
commit
151be65ca3
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ struct ADGameFileDescription {
|
|||
|
||||
enum ADGameFlags {
|
||||
ADGF_NO_FLAGS = 0,
|
||||
ADGF_DEMO = 1 << 31
|
||||
ADGF_DEMO = (1 << 30)
|
||||
};
|
||||
|
||||
struct ADGameDescription {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue