mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-30 05:00:46 +00:00
Use mthing->z instead of mthing->options >> ZSHIFT in particle generator setup
This commit is contained in:
parent
32ef930c04
commit
12d30b7acc
1 changed files with 1 additions and 1 deletions
|
@ -12464,7 +12464,7 @@ static boolean P_SetupParticleGen(mapthing_t *mthing, mobj_t *mobj)
|
|||
|| (ticcount = (sides[lines[line].sidenum[1]].textureoffset >> FRACBITS)) < 1)
|
||||
ticcount = 3;
|
||||
|
||||
numdivisions = (mthing->options >> ZSHIFT);
|
||||
numdivisions = mthing->z;
|
||||
|
||||
if (numdivisions)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue