mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
rsx: Silence some meaningless error
This commit is contained in:
parent
f2a3167193
commit
3f14bc6961
1 changed files with 2 additions and 5 deletions
|
@ -1045,12 +1045,9 @@ namespace rsx
|
||||||
writer_lock lock(m_cache_mutex);
|
writer_lock lock(m_cache_mutex);
|
||||||
section_storage_type* region = find_flushable_section(memory_address, memory_size);
|
section_storage_type* region = find_flushable_section(memory_address, memory_size);
|
||||||
|
|
||||||
//TODO: Make this an assertion
|
//Check if section was released, usually if cell overwrites a currently bound render target
|
||||||
if (region == nullptr)
|
if (region == nullptr)
|
||||||
{
|
return true;
|
||||||
LOG_ERROR(RSX, "Failed to find section for render target 0x%X + 0x%X", memory_address, memory_size);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (skip_synchronized && region->is_synchronized())
|
if (skip_synchronized && region->is_synchronized())
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue