mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-02 13:12:50 +00:00
Fixed unsignedness of M_UnlockableMapNum return type
This commit is contained in:
parent
0ef95875fa
commit
d5ab51fe38
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue