Skip to content

Commit

Permalink
rsx: Improve strict mode check in 308a::color
Browse files Browse the repository at this point in the history
- The chances that someone is using strict mode is lower than the odds of having default ZCULL
  • Loading branch information
kd-11 committed Dec 9, 2023
1 parent 67f97b0 commit ab6bcd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/RSX/rsx_methods.cpp
Expand Up @@ -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();
}
Expand Down

0 comments on commit ab6bcd3

Please sign in to comment.