From 3f14bc6961c900b3973f12ac834de8bcb356e4d8 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sat, 19 May 2018 00:16:44 +0300 Subject: [PATCH] rsx: Silence some meaningless error --- rpcs3/Emu/RSX/Common/texture_cache.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/rpcs3/Emu/RSX/Common/texture_cache.h b/rpcs3/Emu/RSX/Common/texture_cache.h index 5f031ec5d8..d18a1b5ca5 100644 --- a/rpcs3/Emu/RSX/Common/texture_cache.h +++ b/rpcs3/Emu/RSX/Common/texture_cache.h @@ -1045,12 +1045,9 @@ namespace rsx writer_lock lock(m_cache_mutex); 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) - { - LOG_ERROR(RSX, "Failed to find section for render target 0x%X + 0x%X", memory_address, memory_size); - return false; - } + return true; if (skip_synchronized && region->is_synchronized()) return false;