EE: made the developer log for COP2 a bit more verbose and useful.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5742 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1@gmail.com 2013-10-17 20:09:52 +00:00
parent 51c4e05bd0
commit 1c861617a1
1 changed files with 1 additions and 1 deletions

View File

@ -1408,7 +1408,7 @@ void recompileNextInstruction(int delayslot)
for (u32 i = s_pCurBlockEx->startpc; i <= p; i += 4)
{
disR5900Fasm(disasm, memRead32(i), i);
DevCon.Warning("%s%s", i == pc - 4 ? "*" : " ", disasm.c_str());
DevCon.Warning("%s%08X %s", i == pc - 4 ? "*" : i == p ? "=" : " ", memRead32(i), disasm.c_str());
}
break;
}