mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
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:
parent
8f7918d4ad
commit
7047f2da36
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue