From 7b393be047fb2e80d9eb1d2b2bd0230ec8515beb Mon Sep 17 00:00:00 2001 From: xbzk Date: Thu, 9 Apr 2026 22:40:10 -0300 Subject: [PATCH] macro HLE_DrawIndexedIndirect attempt --- src/video_core/macro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/macro.cpp b/src/video_core/macro.cpp index 66cea5afbd..bfa7b72e3f 100644 --- a/src/video_core/macro.cpp +++ b/src/video_core/macro.cpp @@ -137,7 +137,7 @@ void HLE_DrawArraysIndirect::Fallback(Engines::Maxwell3D& maxwell3d, std::span parameters, [[maybe_unused]] u32 method) { auto topology = static_cast(parameters[0]); - if (!maxwell3d.AnyParametersDirty() || !IsTopologySafe(topology)) { + if (!IsTopologySafe(topology)) { Fallback(maxwell3d, parameters); return; }