about summary refs log tree commit diff
path: root/src/engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/e_config_variables.h2
-rw-r--r--src/engine/server/es_server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/e_config_variables.h b/src/engine/e_config_variables.h
index 9cf9a9b3..e28bca4b 100644
--- a/src/engine/e_config_variables.h
+++ b/src/engine/e_config_variables.h
@@ -50,7 +50,7 @@ MACRO_CONFIG_INT(sv_sendheartbeats, 1, 0, 1)
 MACRO_CONFIG_STR(sv_map, 128, "dm1")
 MACRO_CONFIG_INT(sv_map_reload, 0, 0, 1)
 MACRO_CONFIG_INT(sv_max_clients, 8, 1, 12)
-MACRO_CONFIG_INT(sv_bandwidth_mode, 0, 0, 2)
+MACRO_CONFIG_INT(sv_high_bandwidth, 0, 0, 1)
 
 MACRO_CONFIG_INT(debug, 0, 0, 1)
 MACRO_CONFIG_INT(dbg_stress, 0, 0, 0)
diff --git a/src/engine/server/es_server.c b/src/engine/server/es_server.c
index 23eb88a2..bafe0ec2 100644
--- a/src/engine/server/es_server.c
+++ b/src/engine/server/es_server.c
@@ -920,7 +920,7 @@ static int server_run()
 			/* snap game */
 			if(new_ticks)
 			{
-				if(config.sv_bandwidth_mode == 1 || (current_tick%2) == 0)
+				if(config.sv_high_bandwidth || (current_tick%2) == 0)
 				{
 					static PERFORMACE_INFO scope = {"snap", 0};
 					perf_start(&scope);