From 679e901e5fd42efabe255ff27a3515a9a397d63a Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 8 May 2023 15:09:47 +0100 Subject: [PATCH] Fix not having a background ramp upwards when the first entry in the round queue is on the "upper level" of the zigzag --- src/y_inter.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/y_inter.c b/src/y_inter.c index 49684b744..524030cce 100644 --- a/src/y_inter.c +++ b/src/y_inter.c @@ -757,6 +757,13 @@ skiptallydrawer: // Fill in background to left edge of screen fixed_t xiter = x; + + if (upwa == true) + { + xiter -= 24; + V_DrawMappedPatch(xiter, 167, 0, queuebg_upwa, greymap); + } + while (xiter > 0) { xiter -= 24;