From 63647a7dcbbb69ca6f8270e39e517f5aeedfdc9b Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sun, 1 Jun 2025 20:48:23 +0200 Subject: [PATCH] Fix missing inserted = true in check_for_duplicates_fast --- rpcs3/Emu/RSX/Common/surface_store.h | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/RSX/Common/surface_store.h b/rpcs3/Emu/RSX/Common/surface_store.h index ce1e9083e9..4c884c3615 100644 --- a/rpcs3/Emu/RSX/Common/surface_store.h +++ b/rpcs3/Emu/RSX/Common/surface_store.h @@ -678,6 +678,7 @@ namespace rsx } m_ranges.insert(pos, this_range); + inserted = true; break; } }