mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
Skyboxes: Remove obsolete modulo operation
This commit is contained in:
parent
d947558576
commit
3775e6447e
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)
|
||||
skyboxcenterpnts[mthing->tag % 16] = mobj;
|
||||
skyboxcenterpnts[mthing->tag] = mobj;
|
||||
else
|
||||
skyboxviewpnts[mthing->tag % 16] = mobj;
|
||||
skyboxviewpnts[mthing->tag] = mobj;
|
||||
break;
|
||||
case MT_EGGSTATUE:
|
||||
if (mthing->options & MTF_EXTRA)
|
||||
|
|
Loading…
Reference in a new issue