From 6c3ea29157d5fa4f176c211cbda518459a6a4b71 Mon Sep 17 00:00:00 2001 From: chaoticgd <43898262+chaoticgd@users.noreply.github.com> Date: Thu, 3 Jul 2025 01:32:43 +0100 Subject: [PATCH] R3000A: Fix DUMP_BLOCKS option --- pcsx2/x86/iR3000A.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/x86/iR3000A.cpp b/pcsx2/x86/iR3000A.cpp index 9319948894..22dc21aaf2 100644 --- a/pcsx2/x86/iR3000A.cpp +++ b/pcsx2/x86/iR3000A.cpp @@ -125,9 +125,9 @@ static ZyanStatus ZydisFormatterPrintAddressAbsolute(const ZydisFormatter* forma { len = snprintf(buf, sizeof(buf), "psxRegs.cycle"); } - else if (address == A(&g_nextEventCycle)) + else if (address == A(&psxRegs.iopNextEventCycle)) { - len = snprintf(buf, sizeof(buf), "g_nextEventCycle"); + len = snprintf(buf, sizeof(buf), "psxRegs.iopNextEventCycle"); } #undef A