diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sim/sim_linepolyfill.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sim/sim_linepolyfill.c b/src/sim/sim_linepolyfill.c index 9cf66c6..fdd566b 100644 --- a/src/sim/sim_linepolyfill.c +++ b/src/sim/sim_linepolyfill.c @@ -616,6 +616,9 @@ void simPolyFill(cdSimulation* simulation, cdPoint* poly, int n) /* for all horizontal lines between y_max and y_min */ for(y = y_max; y >= y_min; y--) { + if (y == 206) + y=y; + xx_count = simPolyFindHorizontalIntervals(segments, n_seg, xx, hh, y, height); if (xx_count < 2) continue; |