mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-20 09:11:01 +00:00
Make R_ThickSideClip static
This commit is contained in:
parent
c0f54dce93
commit
40569b5a3c
2 changed files with 1 additions and 4 deletions
|
@ -1207,8 +1207,7 @@ void R_RenderThickSideRange(drawseg_t *ds, INT32 x1, INT32 x2, ffloor_t *pfloor)
|
|||
//
|
||||
// R_ThickSideClip
|
||||
// Clips the level by a thick side.
|
||||
//
|
||||
void R_ThickSideClip(INT32 x, drawseg_t *ds, ffloor_t *pfloor)
|
||||
static void R_ThickSideClip(INT32 x, drawseg_t *ds, ffloor_t *pfloor)
|
||||
{
|
||||
fixed_t bottombounds = viewheight << FRACBITS;
|
||||
fixed_t topbounds = (con_clipviewtop - 1) << FRACBITS;
|
||||
|
|
|
@ -22,6 +22,4 @@ void R_RenderMaskedSegRange(drawseg_t *ds, INT32 x1, INT32 x2);
|
|||
void R_RenderThickSideRange(drawseg_t *ds, INT32 x1, INT32 x2, ffloor_t *pffloor);
|
||||
void R_StoreWallRange(INT32 start, INT32 stop);
|
||||
|
||||
void R_ThickSideClip(INT32 x, drawseg_t *ds, ffloor_t *pfloor);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue