From 069821a2e79a14dd5035c19b7f34990cc7887e28 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sat, 28 Mar 2026 13:13:36 +0300 Subject: [PATCH] rsx/rtts: Fix broken optimization check - Typo. Applying inverse res scale is really not what we want --- rpcs3/Emu/RSX/Common/surface_store.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Common/surface_store.h b/rpcs3/Emu/RSX/Common/surface_store.h index d3e9db45b2..88268de22c 100644 --- a/rpcs3/Emu/RSX/Common/surface_store.h +++ b/rpcs3/Emu/RSX/Common/surface_store.h @@ -1487,7 +1487,7 @@ namespace rsx // Perform a test scaling and check if anything is different after scaling // There are many cases where this will avoid creating new surfaces - const auto [new_w, new_h] = rsx::apply_inverse_resolution_scale( + const auto [new_w, new_h] = rsx::apply_resolution_scale( active_config, surface->template get_surface_width<>(), surface->template get_surface_height<>());