From b2a8e63c896467f5edea2a49d8b536957845c9dd Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sat, 18 Apr 2015 15:50:18 -0500 Subject: change the UI server-sorting fields to be GPP-compatible --- src/ui/ui_public.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui') diff --git a/src/ui/ui_public.h b/src/ui/ui_public.h index 0de73dae..f1f55c2f 100644 --- a/src/ui/ui_public.h +++ b/src/ui/ui_public.h @@ -152,10 +152,10 @@ uiMenuCommand_t; typedef enum { SORT_HOST, - SORT_GAME, SORT_MAP, SORT_CLIENTS, - SORT_PING + SORT_PING, + SORT_GAME } serverSortField_t; -- cgit From 716b3ff876671b1711814cf99ae8e7264147c87a Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sat, 18 Apr 2015 15:52:27 -0500 Subject: change the serverlist-querying methods to be compatible with the current deployment of master servers --- src/ui/ui_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui') diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c index 1e6ddad7..74a937a8 100644 --- a/src/ui/ui_main.c +++ b/src/ui/ui_main.c @@ -1120,7 +1120,7 @@ static void UI_StartServerRefresh( qboolean full ) { qboolean global = ui_netSource.integer == AS_GLOBAL; - trap_Cmd_ExecuteText( EXEC_APPEND, va( "globalservers %d full empty\n", + trap_Cmd_ExecuteText( EXEC_APPEND, va( "globalservers %d 70 full empty\n", global ? 0 : 1 ) ); } } -- cgit