From ecc324e4d802fac06685c00dcff977c44688c199 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 17 Oct 2023 19:18:00 -0700 Subject: [PATCH] HUD: fix server splash alignment in non-green resolutions --- src/st_stuff.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 451de0f16..305f50266 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1351,7 +1351,7 @@ void ST_DrawServerSplash(boolean timelimited) V_DrawFixedPatch( gridX, gridY, FRACUNIT, - (V_SNAPTOLEFT|V_SNAPTOBOTTOM) | V_SUBTRACT | V_VFLIP | gridOpacity, + (V_SNAPTOLEFT|V_SNAPTOTOP) | V_SUBTRACT | V_VFLIP | gridOpacity, gridPatch, NULL ); @@ -1369,7 +1369,7 @@ void ST_DrawServerSplash(boolean timelimited) V_DrawFixedPatch( iconX, iconY, FRACUNIT, - (V_SNAPTORIGHT|V_SNAPTOBOTTOM) | opacityFlag, + (V_SNAPTORIGHT|V_SNAPTOTOP) | opacityFlag, iconPatch, NULL ); @@ -1379,7 +1379,7 @@ void ST_DrawServerSplash(boolean timelimited) V_DrawRightAlignedStringAtFixed( textX, textY, - (V_SNAPTORIGHT|V_SNAPTOBOTTOM) | opacityFlag, + (V_SNAPTORIGHT|V_SNAPTOTOP) | opacityFlag, connectedservername );