From f11ab883f813c2fc6f8334164757770b96496c81 Mon Sep 17 00:00:00 2001 From: Julia Nechaevskaya Date: Sat, 3 Aug 2024 09:33:43 +0300 Subject: [PATCH] Hexen: show transparent lines at top and bottom of screen --- src/hexen/r_draw.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/hexen/r_draw.c b/src/hexen/r_draw.c index 93fb095aef..3dd243ae17 100644 --- a/src/hexen/r_draw.c +++ b/src/hexen/r_draw.c @@ -177,10 +177,13 @@ void R_DrawTLColumn(void) fixed_t frac, fracstep; int heightmask = dc_texheight - 1; // [crispy] + // [crispy] Show transparent lines at top and bottom of screen. + /* if (!dc_yl) dc_yl = 1; if (dc_yh == viewheight - 1) dc_yh = viewheight - 2; + */ count = dc_yh - dc_yl; if (count < 0) @@ -257,10 +260,13 @@ void R_DrawAltTLColumn(void) fixed_t frac, fracstep; int heightmask = dc_texheight - 1; // [crispy] + // [crispy] Show transparent lines at top and bottom of screen. + /* if (!dc_yl) dc_yl = 1; if (dc_yh == viewheight - 1) dc_yh = viewheight - 2; + */ count = dc_yh - dc_yl; if (count < 0)