Make R_ThickSideClip static

This commit is contained in:
Jaime Passos 2020-07-23 20:32:23 -03:00
parent c0f54dce93
commit 40569b5a3c
2 changed files with 1 additions and 4 deletions

View file

@ -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;

View file

@ -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