From e48a8d3ff40a191b3401168dcd92e2a5bbb165b1 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Sun, 5 Jul 2026 06:36:31 -0400 Subject: [PATCH] Revert "[TEST] Test for RefreshParametter actual concurrency" --- src/video_core/engines/maxwell_3d.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 56f8e5f3e9..e7da9d9138 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -223,7 +223,9 @@ void Maxwell3D::ProcessMacro(Core::System& system, u32 method, const u32* base_s } void Maxwell3D::RefreshParametersImpl() { - // Temporary change + if (!Settings::IsGPULevelHigh()) { + return; + } size_t current_index = 0; for (auto& segment : macro_segments) { if (segment.first == 0) {