R3000A: Fix DUMP_BLOCKS option

This commit is contained in:
chaoticgd 2025-07-03 01:32:43 +01:00 committed by Ty
parent 36be1a8f7d
commit 6c3ea29157

View File

@ -125,9 +125,9 @@ static ZyanStatus ZydisFormatterPrintAddressAbsolute(const ZydisFormatter* forma
{ {
len = snprintf(buf, sizeof(buf), "psxRegs.cycle"); 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 #undef A