From c3a2aa45a83a082ab527f57f68e5693a1941f006 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 27 Oct 2025 21:53:39 +0000 Subject: [PATCH] Make con_* variables CVAR_ARCHIVE --- code/client/cl_console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/client/cl_console.c b/code/client/cl_console.c index 35bd7cac..ca9c0062 100644 --- a/code/client/cl_console.c +++ b/code/client/cl_console.c @@ -364,8 +364,8 @@ Con_Init void Con_Init (void) { int i; - con_notifytime = Cvar_Get ("con_notifytime", "3", 0); - con_conspeed = Cvar_Get ("scr_conspeed", "3", 0); + con_notifytime = Cvar_Get ("con_notifytime", "3", CVAR_ARCHIVE); + con_conspeed = Cvar_Get ("scr_conspeed", "3", CVAR_ARCHIVE); con_autoclear = Cvar_Get("con_autoclear", "1", CVAR_ARCHIVE); con_scale = Cvar_Get("con_scale", "1", CVAR_ARCHIVE); Cvar_CheckRange(con_scale, 1.0f, 4.0f, qfalse);