aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/ui_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/ui/ui_main.c')
-rw-r--r--code/ui/ui_main.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/code/ui/ui_main.c b/code/ui/ui_main.c
index dcf6743..c06ecdd 100644
--- a/code/ui/ui_main.c
+++ b/code/ui/ui_main.c
@@ -2495,12 +2495,8 @@ static qboolean UI_NetSource_HandleKey(int flags, float *special, int key) {
if (key == K_MOUSE2) {
ui_netSource.integer--;
- if (ui_netSource.integer == AS_MPLAYER)
- ui_netSource.integer--;
} else {
ui_netSource.integer++;
- if (ui_netSource.integer == AS_MPLAYER)
- ui_netSource.integer++;
}
if (ui_netSource.integer >= numNetSources) {
@@ -5972,20 +5968,14 @@ static void UI_StartServerRefresh(qboolean full)
}
uiInfo.serverStatus.refreshtime = uiInfo.uiDC.realTime + 5000;
- if( ui_netSource.integer == AS_GLOBAL || ui_netSource.integer == AS_MPLAYER ) {
- if( ui_netSource.integer == AS_GLOBAL ) {
- i = 0;
- }
- else {
- i = 1;
- }
+ if( ui_netSource.integer == AS_GLOBAL ) {
ptr = UI_Cvar_VariableString("debug_protocol");
if (strlen(ptr)) {
- trap_Cmd_ExecuteText( EXEC_NOW, va( "globalservers %d %s full empty\n", i, ptr));
+ trap_Cmd_ExecuteText( EXEC_NOW, va( "globalservers 0 %s full empty\n", ptr));
}
else {
- trap_Cmd_ExecuteText( EXEC_NOW, va( "globalservers %d %d full empty\n", i, (int)trap_Cvar_VariableValue( "protocol" ) ) );
+ trap_Cmd_ExecuteText( EXEC_NOW, va( "globalservers 0 %d full empty\n", (int)trap_Cvar_VariableValue( "protocol" ) ) );
}
}
}