mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
1c861617a1
commit
97fa1a7454
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue