From 819ebc4c268c8d61335afa1b1304a65e5600c5ee Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 25 Aug 2023 14:51:21 -0400 Subject: [PATCH] Highlight contact with shoutcolor --- src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index b6581e71a..20f090585 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1398,7 +1398,7 @@ static void ST_DrawServerSplash(void) V_DrawRightAlignedThinStringAtFixed( textX, textY, (V_SNAPTORIGHT|V_SNAPTOBOTTOM) | opacityFlag, - va("Contact @ %s", connectedservercontact) + va("Contact @ %c%s", '\x80' + cv_shoutcolor.value, connectedservercontact) ); textY -= (10 * FRACUNIT); }