From d87f055bb202e07d43334dcc188fbbf44f9990c6 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 9 Nov 2025 02:39:11 +0300 Subject: [PATCH] vk: Fix hang when doing typeless copy in the resource assembler --- rpcs3/Emu/RSX/VK/VKTextureCache.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/rpcs3/Emu/RSX/VK/VKTextureCache.cpp b/rpcs3/Emu/RSX/VK/VKTextureCache.cpp index 857101372e..454038c962 100644 --- a/rpcs3/Emu/RSX/VK/VKTextureCache.cpp +++ b/rpcs3/Emu/RSX/VK/VKTextureCache.cpp @@ -485,8 +485,6 @@ namespace vk const areai src_rect = coordi{{ src_x, src_y }, { src_w, src_h }}; const areai dst_rect = coordi{{ section.dst_x, section.dst_y }, { section.dst_w, section.dst_h }}; vk::copy_image_typeless(cmd, section.src, dst, src_rect, dst_rect, 1); - - section.src->pop_layout(cmd); continue; }