Corrected an error in the fringe area calculation that was supposed

to be ignoring geometry outside the area of the halo, but wasn't.
This commit is contained in:
Tim Edwards 2022-05-31 22:45:46 -04:00
parent bbcc05c004
commit 8d985ea766
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.307
8.3.308

View File

@ -708,7 +708,7 @@ extAddCouple(bp, ecs)
GEOCLIP(&bp->b_segment, extCoupleSearchArea);
if ((bp->b_segment.r_ytop <= bp->b_segment.r_ybot) &&
if ((bp->b_segment.r_ytop <= bp->b_segment.r_ybot) ||
(bp->b_segment.r_xtop <= bp->b_segment.r_xbot))
return 0;
}