From f1dc232f91e0ca5f61691a99ca86099101722a92 Mon Sep 17 00:00:00 2001 From: TJnotJT Date: Mon, 17 Nov 2025 23:08:29 -0500 Subject: [PATCH] GSRunner: Use correct config name to disable shader cache. --- pcsx2-gsrunner/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2-gsrunner/Main.cpp b/pcsx2-gsrunner/Main.cpp index 39cb54a42f..f0470b7d8a 100644 --- a/pcsx2-gsrunner/Main.cpp +++ b/pcsx2-gsrunner/Main.cpp @@ -730,7 +730,7 @@ bool GSRunner::ParseCommandLineArgs(int argc, char* argv[], VMBootParameters& pa else if (CHECK_ARG("-noshadercache")) { Console.WriteLn("Disabling shader cache"); - s_settings_interface.SetBoolValue("EmuCore/GS", "disable_shader_cache", true); + s_settings_interface.SetBoolValue("EmuCore/GS", "DisableShaderCache", true); continue; } else if (CHECK_ARG("-window"))