From 8d8aa874575c2cdf529f18f6ef25c87a2ac0b03c Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sun, 7 Dec 2014 17:30:22 +0100 Subject: [PATCH] pcsx2: interpreter: better use pc cpuRegs.pc is the actual pc+4... --- pcsx2/Interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Interpreter.cpp b/pcsx2/Interpreter.cpp index a4448e8d4c..ab7e9a07a3 100644 --- a/pcsx2/Interpreter.cpp +++ b/pcsx2/Interpreter.cpp @@ -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) {