mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12: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>
|
template <typename ...Args>
|
||||||
void commit_framebuffer_memory_region(commandbuffer_type& cmd, const address_range &rsx_range, Args&&... extras)
|
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))
|
if (!region_intersects_cache(rsx_range, true))
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue