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 "