mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Cast Moment
This commit is contained in:
parent
83112c8248
commit
495812aa0e
1 changed files with 2 additions and 2 deletions
|
|
@ -603,7 +603,7 @@ static void readfreeslots(MYFILE *f)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// We don't, so freeslot it.
|
// We don't, so freeslot it.
|
||||||
if (lastcustomtol == MAXTOL) // Unless you have way too many, since they're flags.
|
if (lastcustomtol == (UINT32)MAXTOL) // Unless you have way too many, since they're flags.
|
||||||
deh_warning("Ran out of free typeoflevel slots!\n");
|
deh_warning("Ran out of free typeoflevel slots!\n");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -10454,7 +10454,7 @@ static inline int lib_freeslot(lua_State *L)
|
||||||
|
|
||||||
// We don't, so allocate a new one.
|
// We don't, so allocate a new one.
|
||||||
if (TYPEOFLEVEL[i].name == NULL) {
|
if (TYPEOFLEVEL[i].name == NULL) {
|
||||||
if (lastcustomtol == MAXTOL) // Unless you have way too many, since they're flags.
|
if (lastcustomtol == (UINT32)MAXTOL) // Unless you have way too many, since they're flags.
|
||||||
CONS_Alert(CONS_WARNING, "Ran out of free typeoflevel slots!\n");
|
CONS_Alert(CONS_WARNING, "Ran out of free typeoflevel slots!\n");
|
||||||
else {
|
else {
|
||||||
CONS_Printf("TypeOfLevel TOL_%s allocated.\n",word);
|
CONS_Printf("TypeOfLevel TOL_%s allocated.\n",word);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue