Fixed unsignedness of M_UnlockableMapNum return type

This commit is contained in:
toaster 2022-12-13 16:18:56 +00:00
parent 0ef95875fa
commit d5ab51fe38
2 changed files with 2 additions and 2 deletions

View file

@ -1252,7 +1252,7 @@ cupheader_t *M_UnlockableCup(unlockable_t *unlock)
return cup;
}
INT16 M_UnlockableMapNum(unlockable_t *unlock)
UINT16 M_UnlockableMapNum(unlockable_t *unlock)
{
if (unlock->type != SECRET_MAP)
{

View file

@ -226,7 +226,7 @@ UINT8 M_GotLowEnoughTime(INT32 tictime);
INT32 M_UnlockableSkinNum(unlockable_t *unlock);
INT32 M_UnlockableFollowerNum(unlockable_t *unlock);
cupheader_t *M_UnlockableCup(unlockable_t *unlock);
INT16 M_UnlockableMapNum(unlockable_t *unlock);
UINT16 M_UnlockableMapNum(unlockable_t *unlock);
INT32 M_EmblemSkinNum(emblem_t *emblem);