Add bottomclip parameter to FillSimplePoly() for the software implementation

- Polygons will be clipped to bottomclip. If this is zero or below, they
  will be clipped to the bottom of the screen instead. This keeps the
  polygons from overwriting the status bar border for sofware 2D. The
  hardware version ignores it, since it always draws the status bar border
  every frame.
This commit is contained in:
Marisa Heit 2016-11-05 22:49:33 -05:00
commit 55ee78fc0b
5 changed files with 22 additions and 11 deletions

View file

@ -2046,7 +2046,8 @@ void AM_drawSubsectors()
scale / scaley,
rotation,
colormap,
floorlight
floorlight,
f_y + f_h
);
}
}