mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-29 03:24:36 +00:00
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:
parent
67f97b0e15
commit
ab6bcd32a9
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user