From d79a5443201692660673ddf9626989bb056aac61 Mon Sep 17 00:00:00 2001 From: pauls-gh Date: Thu, 22 Mar 2018 15:21:00 -0700 Subject: [PATCH] VTC tiling - fix source offset increment. --- rpcs3/Emu/RSX/Common/TextureUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Common/TextureUtils.cpp b/rpcs3/Emu/RSX/Common/TextureUtils.cpp index 2cb22f1d0..730ae09e0 100644 --- a/rpcs3/Emu/RSX/Common/TextureUtils.cpp +++ b/rpcs3/Emu/RSX/Common/TextureUtils.cpp @@ -88,7 +88,7 @@ struct copy_unmodified_block_vtc // Last plane in the group of 4? if (d && ((d & 3) == 0)) { - src_offset += row_element_count; + src_offset += row_element_count - 4; } else {