mirror of https://github.com/PCSX2/pcsx2.git
iR3000: Fix memchecks that only log
This commit is contained in:
parent
5b0b6191d8
commit
e462f1ff9c
|
@ -1382,7 +1382,18 @@ static void psxRecMemcheck(u32 op, u32 bits, bool store)
|
|||
if (checks[i].result & MEMCHECK_LOG)
|
||||
{
|
||||
xMOV(edx, store);
|
||||
xFastCall((void*)psxDynarecMemLogcheck, ecx, edx);
|
||||
|
||||
// Refer to the EE recompiler for an explaination
|
||||
if(!(checks[i].result & MEMCHECK_BREAK))
|
||||
{
|
||||
xPUSH(eax); xPUSH(ebx); xPUSH(ecx); xPUSH(edx);
|
||||
xFastCall((void*)psxDynarecMemLogcheck, ecx, edx);
|
||||
xPOP(edx); xPOP(ecx); xPOP(ebx); xPOP(eax);
|
||||
}
|
||||
else
|
||||
{
|
||||
xFastCall((void*)psxDynarecMemLogcheck, ecx, edx);
|
||||
}
|
||||
}
|
||||
if (checks[i].result & MEMCHECK_BREAK)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue