mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 12:40:42 +00:00
Changed show_fps, show_time, show_pl and show_ping into archived cvars. They
were archived originally, but apparently some insane little gremlin keeps reverting my change without telling me why :) Tim/Misty/Misty-chan
This commit is contained in:
parent
e38259e01f
commit
301eb4b8fd
2 changed files with 6 additions and 6 deletions
|
@ -158,9 +158,9 @@ CL_InitCvars (void)
|
|||
"mouse forward/back speed");
|
||||
m_side = Cvar_Get ("m_side", "0.8", CVAR_ARCHIVE, NULL,
|
||||
"mouse strafe speed");
|
||||
show_fps = Cvar_Get ("show_fps", "0", CVAR_NONE, NULL,
|
||||
show_fps = Cvar_Get ("show_fps", "0", CVAR_ARCHIVE, NULL,
|
||||
"display realtime frames per second");
|
||||
show_time = Cvar_Get ("show_time", "0", CVAR_NONE, NULL,
|
||||
show_time = Cvar_Get ("show_time", "0", CVAR_ARCHIVE, NULL,
|
||||
"display the current time");
|
||||
}
|
||||
|
||||
|
|
|
@ -1280,13 +1280,13 @@ CL_Init_Cvars (void)
|
|||
rcon_address = Cvar_Get ("rcon_address", "", CVAR_NONE, NULL, "server IP "
|
||||
"address when client not connected - for "
|
||||
"sending rcon commands");
|
||||
show_fps = Cvar_Get ("show_fps", "0", CVAR_NONE, NULL,
|
||||
show_fps = Cvar_Get ("show_fps", "0", CVAR_ARCHIVE, NULL,
|
||||
"display realtime frames per second");
|
||||
show_ping = Cvar_Get ("show_ping", "0", CVAR_NONE, NULL,
|
||||
show_ping = Cvar_Get ("show_ping", "0", CVAR_ARCHIVE, NULL,
|
||||
"display current ping to server");
|
||||
show_pl = Cvar_Get ("show_pl", "0", CVAR_NONE, NULL,
|
||||
show_pl = Cvar_Get ("show_pl", "0", CVAR_ARCHIVE, NULL,
|
||||
"display current packet loss to server");
|
||||
show_time = Cvar_Get ("show_time", "0", CVAR_NONE, NULL,
|
||||
show_time = Cvar_Get ("show_time", "0", CVAR_ARCHIVE, NULL,
|
||||
"Display the current time, 1 24hr, 2 AM/PM");
|
||||
cl_predict_players = Cvar_Get ("cl_predict_players", "1", CVAR_NONE, NULL,
|
||||
"If this is 0, no player prediction is "
|
||||
|
|
Loading…
Reference in a new issue