mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Skyboxes: Remove obsolete modulo operation
This commit is contained in:
parent
08386ead09
commit
485f505142
1 changed files with 2 additions and 2 deletions
|
|
@ -12650,9 +12650,9 @@ static boolean P_SetupSpawnedMapThing(mapthing_t *mthing, mobj_t *mobj, boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mthing->options & MTF_OBJECTSPECIAL)
|
if (mthing->options & MTF_OBJECTSPECIAL)
|
||||||
skyboxcenterpnts[mthing->tag % 16] = mobj;
|
skyboxcenterpnts[mthing->tag] = mobj;
|
||||||
else
|
else
|
||||||
skyboxviewpnts[mthing->tag % 16] = mobj;
|
skyboxviewpnts[mthing->tag] = mobj;
|
||||||
break;
|
break;
|
||||||
case MT_EGGSTATUE:
|
case MT_EGGSTATUE:
|
||||||
if (mthing->options & MTF_EXTRA)
|
if (mthing->options & MTF_EXTRA)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue