diff options
Diffstat (limited to 'src/engine/config_variables.h')
| -rw-r--r-- | src/engine/config_variables.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/engine/config_variables.h b/src/engine/config_variables.h index b8f11c32..ba9852aa 100644 --- a/src/engine/config_variables.h +++ b/src/engine/config_variables.h @@ -1,12 +1,16 @@ #include "../game/game_variables.h" -MACRO_CONFIG_INT(debug, 0, 0, 1) 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_INT(debug, 0, 0, 1) +MACRO_CONFIG_INT(stress, 0, 0, 0) +MACRO_CONFIG_STR(cl_stress_server, 32, "localhost") + MACRO_CONFIG_INT(gfx_screen_width, 800, 0, 0) MACRO_CONFIG_INT(gfx_screen_height, 600, 0, 0) MACRO_CONFIG_INT(gfx_fullscreen, 1, 0, 1) @@ -25,3 +29,7 @@ MACRO_CONFIG_STR(sv_name, 128, "unnamed server") MACRO_CONFIG_STR(sv_bindaddr, 128, "") 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_max_clients, 8, 1, 8) + |