From 305a5bd717c75dd15505154119550620b0d394d5 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sat, 5 Oct 2019 11:59:20 +0300 Subject: [PATCH] typo fix --- rpcs3/Emu/RSX/VK/VKTextureCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKTextureCache.h b/rpcs3/Emu/RSX/VK/VKTextureCache.h index 7f7dd79bf9..d44af8c4ed 100644 --- a/rpcs3/Emu/RSX/VK/VKTextureCache.h +++ b/rpcs3/Emu/RSX/VK/VKTextureCache.h @@ -618,7 +618,7 @@ namespace vk // Final aspect mask of the 'final' transfer source const auto new_src_aspect = src_image->aspect(); - if (LIKELY(src_w == section.dst_w && src_h == section.dst_h && section.xform == surface_transform::identity)) + if (LIKELY(src_w == section.dst_w && src_h == section.dst_h && transform == surface_transform::identity)) { VkImageCopy copy_rgn; copy_rgn.srcOffset = { src_x, src_y, 0 };