mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue