mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
rsx: Typo fix in audit condition
This commit is contained in:
parent
30d176ac5e
commit
3787108ee7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue