From 54cd540e5b2dd3b7a99eb637d89bfb1b2656a65a Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 14 Feb 2022 14:41:34 +0000 Subject: [PATCH] Fix the chat underlay being physically seperated from the chat text in non-green resolutions. --- src/v_video.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/v_video.c b/src/v_video.c index 147e3892f..60764ccbd 100644 --- a/src/v_video.c +++ b/src/v_video.c @@ -997,7 +997,8 @@ void V_DrawFillConsoleMap(INT32 x, INT32 y, INT32 w, INT32 h, INT32 c) w *= dupx; h *= dupy; - // adjustxy + // Center it if necessary + K_AdjustXYWithSnap(&x, &y, c, dupx, dupy); } if (x >= vid.width || y >= vid.height)