From 30bba09fed0c2e52ea2e08d62087da15ffeebeae Mon Sep 17 00:00:00 2001 From: kd-11 Date: Wed, 1 Nov 2017 17:27:01 +0300 Subject: [PATCH] disable fb testing for partial framebuffer resources --- rpcs3/Emu/RSX/Common/texture_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Common/texture_cache.h b/rpcs3/Emu/RSX/Common/texture_cache.h index 2428f02dad..6bda216bb6 100644 --- a/rpcs3/Emu/RSX/Common/texture_cache.h +++ b/rpcs3/Emu/RSX/Common/texture_cache.h @@ -934,7 +934,7 @@ namespace rsx const u32 internal_width = (const u32)(tex_width * internal_scale); const auto rsc = m_rtts.get_surface_subresource_if_applicable(texaddr, internal_width, tex_height, tex_pitch, true); - if (rsc.surface && test_framebuffer(texaddr)) + if (rsc.surface/* && test_framebuffer(texaddr)*/) { //TODO: Check that this region is not cpu-dirty before doing a copy if (extended_dimension != rsx::texture_dimension_extended::texture_dimension_2d)