From 08c81e5693855ac2135dbaba1e18716d20b8408d Mon Sep 17 00:00:00 2001 From: Daniel Gibson Date: Wed, 5 Mar 2025 05:57:01 +0100 Subject: [PATCH] Fix typo in Com_ExecMachineSpec_f() --- neo/framework/Common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/framework/Common.cpp b/neo/framework/Common.cpp index 85affed3..a3d11dea 100644 --- a/neo/framework/Common.cpp +++ b/neo/framework/Common.cpp @@ -1463,7 +1463,7 @@ void Com_ExecMachineSpec_f( const idCmdArgs &args ) { cvarSystem->SetCVarInteger( "s_maxSoundsPerShader", 0, CVAR_ARCHIVE ); cvarSystem->SetCVarInteger( "image_useNormalCompression", 0, CVAR_ARCHIVE ); if ( !nores ) // DG: added optional "nores" argument - cvarSystem->SetCVarInteger( "", 4, CVAR_ARCHIVE ); + cvarSystem->SetCVarInteger( "r_mode", 4, CVAR_ARCHIVE ); cvarSystem->SetCVarInteger( "r_multiSamples", 0, CVAR_ARCHIVE ); } else if ( com_machineSpec.GetInteger() == 1 ) { // medium cvarSystem->SetCVarString( "image_filter", "GL_LINEAR_MIPMAP_LINEAR", CVAR_ARCHIVE );