VS_PredictAroundArena: Tidy up condition

This commit is contained in:
toaster 2023-10-30 00:11:05 +00:00
parent e648db685c
commit d9d137be77

View file

@ -91,7 +91,7 @@ fixed_t *VS_PredictAroundArena(mobj_t *arena, mobj_t *movingobject, fixed_t magn
// Subtract the radius so it's usable as a delta!
radiusdelta -= radius;
if (radiusdelta)
if (radiusdelta && radiusdeltafactor != FRACUNIT)
radiusdelta = FixedDiv(radiusdelta, radiusdeltafactor);
}