From 278cb52f19f9ba9ee3f54e97fd1c18dedd0d7558 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Thu, 21 Jun 2018 18:21:38 +0300 Subject: [PATCH] facepalm --- rpcs3/Emu/RSX/VK/VKTexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKTexture.cpp b/rpcs3/Emu/RSX/VK/VKTexture.cpp index f11cb3b65d..8b70592a34 100644 --- a/rpcs3/Emu/RSX/VK/VKTexture.cpp +++ b/rpcs3/Emu/RSX/VK/VKTexture.cpp @@ -275,7 +275,7 @@ namespace vk if (dstLayout != preferred_dst_format) change_image_layout(cmd, dst, dstLayout, preferred_dst_format, vk::get_image_subresource_range(0, 0, 1, 1, aspect)); - if (compatible_formats && src_width == dst_width && src_height != dst_height) + if (compatible_formats && src_width == dst_width && src_height == dst_height) { VkImageCopy copy_rgn; copy_rgn.srcOffset = { (int32_t)src_x_offset, (int32_t)src_y_offset, 0 };