mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-24 22:41:27 +00:00
Fix mixed code-and-declaration error
This commit is contained in:
parent
97404e9b8c
commit
1ba1318f37
1 changed files with 2 additions and 1 deletions
|
|
@ -1495,6 +1495,7 @@ void Polyobj_InitLevel(void)
|
|||
mqueue_t anchorqueue;
|
||||
mobjqitem_t *qitem;
|
||||
INT32 i, numAnchors = 0;
|
||||
mobj_t *mo;
|
||||
|
||||
M_QueueInit(&spawnqueue);
|
||||
M_QueueInit(&anchorqueue);
|
||||
|
|
@ -1513,7 +1514,7 @@ void Polyobj_InitLevel(void)
|
|||
if (th->function.acp1 == (actionf_p1)P_RemoveThinkerDelayed)
|
||||
continue;
|
||||
|
||||
mobj_t *mo = (mobj_t *)th;
|
||||
mo = (mobj_t *)th;
|
||||
|
||||
if (mo->info->doomednum == POLYOBJ_SPAWN_DOOMEDNUM ||
|
||||
mo->info->doomednum == POLYOBJ_SPAWNCRUSH_DOOMEDNUM)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue