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
This commit is contained in:
kd-11 2023-12-08 23:13:43 +03:00 committed by kd-11
parent 67f97b0e15
commit ab6bcd32a9

View File

@ -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();
}