mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-18 23:21:41 +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.
|
// [RH] Compatibility flags.
|
||||||
enum
|
enum : unsigned int
|
||||||
{
|
{
|
||||||
COMPATF_SHORTTEX = 1 << 0, // Use Doom's shortest texture around behavior?
|
COMPATF_SHORTTEX = 1 << 0, // Use Doom's shortest texture around behavior?
|
||||||
COMPATF_STAIRINDEX = 1 << 1, // Don't fix loop index for stair building?
|
COMPATF_STAIRINDEX = 1 << 1, // Don't fix loop index for stair building?
|
||||||
|
|
|
@ -125,7 +125,7 @@ struct FMapOptInfo
|
||||||
bool old;
|
bool old;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum ELevelFlags
|
enum ELevelFlags : unsigned int
|
||||||
{
|
{
|
||||||
LEVEL_NOINTERMISSION = 0x00000001,
|
LEVEL_NOINTERMISSION = 0x00000001,
|
||||||
LEVEL_NOINVENTORYBAR = 0x00000002, // This effects Doom only, since it's the only one without a standard inventory bar.
|
LEVEL_NOINVENTORYBAR = 0x00000002, // This effects Doom only, since it's the only one without a standard inventory bar.
|
||||||
|
|
Loading…
Reference in a new issue