mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-23 03:52:12 -04:00
more elegant fix for "ISO C restricts enumerator values to range of ‘int’" warning
This commit is contained in:
parent
90bb538c79
commit
4bc54276dd
@ -203,7 +203,7 @@ typedef enum
|
||||
MF_FRIEND = 0x40000000, // killough 7/18/98: friendly monsters
|
||||
|
||||
// Translucent sprite? // phares
|
||||
MF_TRANSLUCENT = 0x80000000, // phares
|
||||
MF_TRANSLUCENT = (int)0x80000000, // phares
|
||||
} mobjflag_t;
|
||||
|
||||
typedef enum
|
||||
|
Loading…
x
Reference in New Issue
Block a user