fix some missing ()s that got lost due to the () forrest that got chainsawed

(ie, the previous code was /a mess/)
This commit is contained in:
Bill Currie 2001-08-16 02:08:22 +00:00
parent 8f7918d4ad
commit 7047f2da36

View file

@ -833,7 +833,7 @@ PF_findradius (progs_t *pr)
emaxs = SVvector (ent, maxs);
for (j = 0; j < 3; j++)
eorg[j] = org[j] - (eorigin[j] + emins[j] + emaxs[j]) * 0.5;
eorg[j] = org[j] - (eorigin[j] + (emins[j] + emaxs[j]) * 0.5);
if (DotProduct (eorg, eorg) > rad)
continue;