more elegant fix for "ISO C restricts enumerator values to range of ‘int’" warning

This commit is contained in:
Fabian Greffrath 2022-06-27 13:34:14 +02:00
parent 90bb538c79
commit 4bc54276dd

View File

@ -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