mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: interpreter: better use pc
cpuRegs.pc is the actual pc+4...
This commit is contained in:
parent
bf9fc521cb
commit
8d8aa87457
pcsx2
|
@ -170,7 +170,7 @@ static void execI()
|
|||
// Based on cycle
|
||||
// if( cpuRegs.cycle > 0x4f24d714 )
|
||||
// Or dump from a particular PC (useful to debug handler/syscall)
|
||||
if (cpuRegs.pc == 0x80000000) {
|
||||
if (pc == 0x80000000) {
|
||||
print_me = 2000;
|
||||
}
|
||||
if (print_me) {
|
||||
|
|
Loading…
Reference in New Issue