From 301eb4b8fd084aab5c231a40842ec6748149ed7f Mon Sep 17 00:00:00 2001 From: "Timothy C. McGrath" Date: Tue, 19 Feb 2002 00:58:17 +0000 Subject: [PATCH] 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 --- nq/source/cl_main.c | 4 ++-- qw/source/cl_main.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nq/source/cl_main.c b/nq/source/cl_main.c index 06c43435e..945ef30d8 100644 --- a/nq/source/cl_main.c +++ b/nq/source/cl_main.c @@ -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"); } diff --git a/qw/source/cl_main.c b/qw/source/cl_main.c index 336095608..19fe9dbfd 100644 --- a/qw/source/cl_main.c +++ b/qw/source/cl_main.c @@ -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 "