rsx: Typo fix in audit condition

This commit is contained in:
kd-11
2020-02-09 16:04:22 +03:00
committed by Ivan
parent 30d176ac5e
commit 3787108ee7
+1 -1
View File
@@ -1162,7 +1162,7 @@ namespace rsx
template <typename ...Args>
void commit_framebuffer_memory_region(commandbuffer_type& cmd, const address_range &rsx_range, Args&&... extras)
{
AUDIT(!g_cfg.video.write_color_buffers && !g_cfg.video.write_depth_buffer);
AUDIT(!g_cfg.video.write_color_buffers || !g_cfg.video.write_depth_buffer);
if (!region_intersects_cache(rsx_range, true))
return;