From ab6bcd32a99eaf7eac37de303ff2cfd71ebee799 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Fri, 8 Dec 2023 23:13:43 +0300 Subject: [PATCH] rsx: Improve strict mode check in 308a::color - The chances that someone is using strict mode is lower than the odds of having default ZCULL --- rpcs3/Emu/RSX/rsx_methods.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/rsx_methods.cpp b/rpcs3/Emu/RSX/rsx_methods.cpp index 683944be3d28..c2c6f9d9f475 100644 --- a/rpcs3/Emu/RSX/rsx_methods.cpp +++ b/rpcs3/Emu/RSX/rsx_methods.cpp @@ -1056,7 +1056,7 @@ namespace rsx // 308A::COLOR can be used to create custom sync primitives. // Hide this behind strict mode due to the potential performance implications. - if (count == 1 && !g_cfg.video.relaxed_zcull_sync && g_cfg.video.strict_rendering_mode) + if (count == 1 && g_cfg.video.strict_rendering_mode && !g_cfg.video.relaxed_zcull_sync) { rsx->sync(); }