From f3637cdfdb89ebde1d2b66bbad3d687786124c58 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Mon, 22 Jun 2020 21:27:34 +0300 Subject: [PATCH] rsx: Fix surface options hint mechanism - Silly typo --- rpcs3/Emu/RSX/rsx_methods.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/rsx_methods.cpp b/rpcs3/Emu/RSX/rsx_methods.cpp index 5023a8807b..1a559f0f71 100644 --- a/rpcs3/Emu/RSX/rsx_methods.cpp +++ b/rpcs3/Emu/RSX/rsx_methods.cpp @@ -720,9 +720,9 @@ namespace rsx set_surface_dirty_bit(rsx, reg, arg); } - void set_surface_options_dirty_bit(thread* rsx, u32 reg, u32) + void set_surface_options_dirty_bit(thread* rsx, u32 reg, u32 arg) { - if (reg != method_registers.register_previous_value) + if (arg != method_registers.register_previous_value) { rsx->on_framebuffer_options_changed(reg); }