From ae8e28282c937083d45c248d9c6d5aa7e33906d4 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Mon, 12 Jan 2026 23:14:08 +0300 Subject: [PATCH] rsx/zcull: Fix silly copypasta - Find+Replace bug --- rpcs3/Emu/RSX/RSXZCULL.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcs3/Emu/RSX/RSXZCULL.cpp b/rpcs3/Emu/RSX/RSXZCULL.cpp index 63e39a8314..54b7ed4139 100644 --- a/rpcs3/Emu/RSX/RSXZCULL.cpp +++ b/rpcs3/Emu/RSX/RSXZCULL.cpp @@ -106,9 +106,9 @@ namespace rsx void ZCULL_control::set_status(class ::rsx::thread* ptimer, bool surface_active, bool zpass_active, bool zcull_stats_active, bool flush_queue) { - surface_active = surface_active; - zpass_count_enabled = zpass_active; - stats_enabled = zcull_stats_active; + this->surface_active = surface_active; + this->zpass_count_enabled = zpass_active; + this->stats_enabled = zcull_stats_active; check_state(ptimer, flush_queue);