More people ought to know what modulo is...

Or modulous if your prefer.
This commit is contained in:
GoldenTails 2020-06-22 04:14:42 -05:00
parent 6fe0874606
commit f0787077e3
1 changed files with 1 additions and 4 deletions

View File

@ -2964,10 +2964,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
INT32 aim;
aim = sides[line->sidenum[0]].textureoffset>>FRACBITS;
while (aim < 0)
aim += 360;
while (aim >= 360)
aim -= 360;
aim = (aim + 360) % 360;
aim *= (ANGLE_90>>8);
aim /= 90;
aim <<= 8;