mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- now that C++11 is allowed, these annoying 'narrowing conversion' warnings can finally be fixed...
This commit is contained in:
parent
f7a3314a0a
commit
7da8112f12
2 changed files with 2 additions and 2 deletions
|
@ -302,7 +302,7 @@ enum
|
|||
};
|
||||
|
||||
// [RH] Compatibility flags.
|
||||
enum
|
||||
enum : unsigned int
|
||||
{
|
||||
COMPATF_SHORTTEX = 1 << 0, // Use Doom's shortest texture around behavior?
|
||||
COMPATF_STAIRINDEX = 1 << 1, // Don't fix loop index for stair building?
|
||||
|
|
|
@ -125,7 +125,7 @@ struct FMapOptInfo
|
|||
bool old;
|
||||
};
|
||||
|
||||
enum ELevelFlags
|
||||
enum ELevelFlags : unsigned int
|
||||
{
|
||||
LEVEL_NOINTERMISSION = 0x00000001,
|
||||
LEVEL_NOINVENTORYBAR = 0x00000002, // This effects Doom only, since it's the only one without a standard inventory bar.
|
||||
|
|
Loading…
Reference in a new issue