From 97fa1a74547fcd24f78887df25ffb236be1fdec8 Mon Sep 17 00:00:00 2001 From: "sudonim1@gmail.com" Date: Thu, 17 Oct 2013 20:11:48 +0000 Subject: [PATCH] EE: I'm forgetful, this was meant to be part of the log change. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5743 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/x86/ix86-32/iR5900-32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/ix86-32/iR5900-32.cpp b/pcsx2/x86/ix86-32/iR5900-32.cpp index a418f1310d..ac557752ef 100644 --- a/pcsx2/x86/ix86-32/iR5900-32.cpp +++ b/pcsx2/x86/ix86-32/iR5900-32.cpp @@ -1405,7 +1405,7 @@ void recompileNextInstruction(int delayslot) { std::string disasm; DevCon.Warning("Possible old value used in COP2 code"); - for (u32 i = s_pCurBlockEx->startpc; i <= p; i += 4) + for (u32 i = s_pCurBlockEx->startpc; i < s_nEndBlock; i += 4) { disR5900Fasm(disasm, memRead32(i), i); DevCon.Warning("%s%08X %s", i == pc - 4 ? "*" : i == p ? "=" : " ", memRead32(i), disasm.c_str());