From 2c22ead0782648e1ff2d5d379d5ae021ea33389c Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sat, 2 Sep 2017 17:35:09 -0500 Subject: [PATCH] Make map names in q3_ui map select menu be uppercase Makes map names match on both pages of start server menu. --- code/q3_ui/ui_startserver.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/q3_ui/ui_startserver.c b/code/q3_ui/ui_startserver.c index b4883d4d..505f877f 100644 --- a/code/q3_ui/ui_startserver.c +++ b/code/q3_ui/ui_startserver.c @@ -331,6 +331,7 @@ static void StartServer_LevelshotDraw( void *self ) { int h; int n; const char *info; + char mapname[ MAX_NAMELENGTH ]; b = (menubitmap_s *)self; @@ -366,7 +367,9 @@ static void StartServer_LevelshotDraw( void *self ) { n = s_startserver.page * MAX_MAPSPERPAGE + b->generic.id - ID_PICTURES; info = UI_GetArenaInfoByNumber( s_startserver.maplist[ n ]); - UI_DrawString( x, y, Info_ValueForKey( info, "map" ), UI_CENTER|UI_SMALLFONT, color_orange ); + Q_strncpyz( mapname, Info_ValueForKey( info, "map"), MAX_NAMELENGTH ); + Q_strupr( mapname ); + UI_DrawString( x, y, mapname, UI_CENTER|UI_SMALLFONT, color_orange ); x = b->generic.x; y = b->generic.y;