From b4a1b7daf3388bd6f46072086644fa306bafdac0 Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 10 May 2023 01:04:30 +0100 Subject: [PATCH] Fix horizontal page scroll for cases where player results are centered --- src/y_inter.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/y_inter.c b/src/y_inter.c index 3decc621f..27b784022 100644 --- a/src/y_inter.c +++ b/src/y_inter.c @@ -526,13 +526,15 @@ void Y_IntermissionDrawer(void) boolean verticalresults = (data.numplayers < 4); + x = xoffset; + if (verticalresults) { - x = (BASEVIDWIDTH/2) - 61; + x += (BASEVIDWIDTH/2) - 61; } else { - x = 29 + xoffset; + x += 29; heightcount /= 2; }