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
This commit is contained in:
sudonim1@gmail.com 2013-10-17 20:11:48 +00:00
parent 1c861617a1
commit 97fa1a7454
1 changed files with 1 additions and 1 deletions

View File

@ -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());