From 1981d2e309a2a4e27192f82bdb750e862ca00b8d Mon Sep 17 00:00:00 2001 From: KG7x Date: Tue, 23 Sep 2025 13:33:28 +0300 Subject: [PATCH 1/2] Fix old dl_source --- code/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_main.c b/code/client/cl_main.c index c7adc2cc42..aa3b4b4585 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -3979,7 +3979,7 @@ void CL_Init( void ) { cl_guidServerUniq = Cvar_Get( "cl_guidServerUniq", "1", CVAR_ARCHIVE_ND ); Cvar_SetDescription( cl_guidServerUniq, "Makes cl_guid unique for each server." ); - dl_source = Cvar_Get( "dl_source", "http://ws.q3df.org/getpk3bymapname.php/%m", CVAR_ARCHIVE ); + dl_source = Cvar_Get( "dl_source", "http://ws.q3df.org/maps/download/%m", CVAR_ARCHIVE ); Cvar_SetDescription( dl_source, "Cvar must point to download location." ); dl_usebaseq3 = Cvar_Get( "dl_usebaseq3", "0", CVAR_ARCHIVE_ND ); From a60b5bb03850210b1f6450117e53169e3867c047 Mon Sep 17 00:00:00 2001 From: KG7x Date: Tue, 23 Sep 2025 13:44:34 +0300 Subject: [PATCH 2/2] Return scr_conspeed to default name for same name for other modes & engines --- code/client/cl_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/client/cl_console.c b/code/client/cl_console.c index 8334d02770..aa9034683f 100644 --- a/code/client/cl_console.c +++ b/code/client/cl_console.c @@ -593,7 +593,7 @@ void Con_Init( void ) con_notifyx = Cvar_Get( "con_notifyX", "0", CVAR_ARCHIVE ); con_notifyy = Cvar_Get( "con_notifyY", "0", CVAR_ARCHIVE ); con_notifykeep = Cvar_Get( "con_notifyKeep", "0", CVAR_ARCHIVE ); - con_conspeed = Cvar_Get( "con_togglespeed", "3", 0 ); + con_conspeed = Cvar_Get( "scr_conspeed", "3", 0 ); Cvar_SetDescription( con_conspeed, "Console opening/closing scroll speed." ); con_height = Cvar_Get( "con_height", "0.5", CVAR_ARCHIVE_ND ); con_heightShift = Cvar_Get( "con_heightShift", "0.5", CVAR_ARCHIVE_ND ); // same default because Shift+Esc opens the console too