From 3fa45ff9943f956079f4bedc482afba039365d83 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Tue, 25 Jan 2022 02:13:09 +0300 Subject: [PATCH] Fix missing typeless info update --- 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 c689b182ba..86e4dabb9c 100644 --- a/rpcs3/Emu/RSX/Common/texture_cache.h +++ b/rpcs3/Emu/RSX/Common/texture_cache.h @@ -2868,7 +2868,7 @@ namespace rsx typeless_info.src_gcm_format = gcm_format; } - else if (cached_src->is_depth_texture() != dst_is_depth_surface) + else { typeless_info.src_gcm_format = cached_src->get_gcm_format(); }