mirror of https://github.com/PCSX2/pcsx2.git
x86/iR5900: Fix compiling with DUMP_BLOCKS
This commit is contained in:
parent
9ab449dcf3
commit
6793a84f9b
|
@ -199,9 +199,9 @@ static ZyanStatus ZydisFormatterPrintAddressAbsolute(const ZydisFormatter* forma
|
|||
{
|
||||
len = snprintf(buf, sizeof(buf), "cpuRegs.cycle");
|
||||
}
|
||||
else if (address == A(&g_nextEventCycle))
|
||||
else if (address == A(&cpuRegs.nextEventCycle))
|
||||
{
|
||||
len = snprintf(buf, sizeof(buf), "g_nextEventCycle");
|
||||
len = snprintf(buf, sizeof(buf), "cpuRegs.nextEventCycle");
|
||||
}
|
||||
else if (address >= A(fpuRegs.fpr) && address < A(fpuRegs.fprc))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue