From c5ec47cd0bc149bac9263cad8910a13b942bbe8b Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Sat, 23 Aug 2025 15:46:47 -0400 Subject: [PATCH] Fix connect screen control prompt font --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index b0a996ff9..2520f3523 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -721,7 +721,7 @@ static inline void CL_DrawConnectionStatus(void) // Draw bottom box M_DrawTextBox(BASEVIDWIDTH/2-128-8, BASEVIDHEIGHT-24-8, 32, 1); - K_DrawGameControl(BASEVIDWIDTH/2, BASEVIDHEIGHT-24-24, 0, "Press or to abort", 1, 2, V_YELLOWMAP); + K_DrawGameControl(BASEVIDWIDTH/2, BASEVIDHEIGHT-24-24, 0, "Press or to abort", 1, HU_FONT, V_YELLOWMAP); for (i = 0; i < 16; ++i) V_DrawFill((BASEVIDWIDTH/2-128) + (i * 16), BASEVIDHEIGHT-24, 16, 8, palstart + ((animtime - i) & 15));