about summary refs log tree commit diff
path: root/src/engine/config_variables.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-11 23:10:07 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-11 23:10:07 +0000
commit182c77721e60c6a3b68cc3f1f83e485374d85096 (patch)
tree9d87e573333dac3f21419b8666c409eaf36a627f /src/engine/config_variables.h
parent7cf32e6f972ca4f7cd0bdb1e8a85930a16244747 (diff)
downloadzcatch-182c77721e60c6a3b68cc3f1f83e485374d85096.tar.gz
zcatch-182c77721e60c6a3b68cc3f1f83e485374d85096.zip
cleaned up the console variables
Diffstat (limited to 'src/engine/config_variables.h')
-rw-r--r--src/engine/config_variables.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/engine/config_variables.h b/src/engine/config_variables.h
index 49f2a0d9..9e3fb4d7 100644
--- a/src/engine/config_variables.h
+++ b/src/engine/config_variables.h
@@ -1,20 +1,14 @@
 /* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
 #include "../game/game_variables.h"
 
-MACRO_CONFIG_INT(volume, 200, 0, 255)
-MACRO_CONFIG_INT(cpu_throttle, 0, 0, 1)
 
 MACRO_CONFIG_STR(player_name, 32, "nameless tee")
-
 MACRO_CONFIG_STR(clan_name, 32, "")
 MACRO_CONFIG_STR(password, 32, "")
-
 MACRO_CONFIG_STR(rcon_password, 32, "")
 
-MACRO_CONFIG_INT(debug, 0, 0, 1)
-MACRO_CONFIG_INT(stress, 0, 0, 0)
-MACRO_CONFIG_STR(cl_stress_server, 32, "localhost")
-MACRO_CONFIG_STR(cl_connect, 32, "")
+MACRO_CONFIG_INT(cl_cpu_throttle, 0, 0, 1)
+/*MACRO_CONFIG_STR(cl_connect, 32, "")*/
 MACRO_CONFIG_INT(cl_editor, 0, 0, 1)
 
 MACRO_CONFIG_STR(b_filter_string, 64, "")
@@ -52,8 +46,10 @@ MACRO_CONFIG_INT(sv_port, 8303, 0, 0)
 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(debug, 0, 0, 1)
+MACRO_CONFIG_INT(dbg_stress, 0, 0, 0)
+MACRO_CONFIG_STR(dbg_stress_server, 32, "localhost")
+