rsx/rtts: Fix broken optimization check

- Typo. Applying inverse res scale is really not what we want
This commit is contained in:
kd-11 2026-03-28 13:13:36 +03:00 committed by kd-11
parent 0052108e87
commit 069821a2e7

View File

@ -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<true>(
const auto [new_w, new_h] = rsx::apply_resolution_scale<true>(
active_config,
surface->template get_surface_width<>(),
surface->template get_surface_height<>());