PRRRRRROMOTION

This commit is contained in:
GenericHeroGuy 2025-06-23 17:56:30 +02:00
parent 4be55967f4
commit b019271cc0

View file

@ -185,7 +185,8 @@ const char *M_GetExtraEmblemPatch(extraemblem_t *em, boolean big);
UINT8 M_GotEnoughEmblems(INT32 number); UINT8 M_GotEnoughEmblems(INT32 number);
UINT8 M_GotLowEnoughTime(INT32 tictime); UINT8 M_GotLowEnoughTime(INT32 tictime);
#define M_Achieved(a) ((a) >= MAXCONDITIONSETS || conditionSets[a].achieved) // vvvvvvvvvv anti-integer promotion, do not remove
#define M_Achieved(a) ((unsigned)(a) >= MAXCONDITIONSETS || conditionSets[a].achieved)
#ifdef __cplusplus #ifdef __cplusplus
} // extern "C" } // extern "C"