iR3000: Fix memchecks that only log

This commit is contained in:
Ty Lamontagne 2023-04-27 22:56:57 -04:00 committed by refractionpcsx2
parent 5b0b6191d8
commit e462f1ff9c
1 changed files with 12 additions and 1 deletions

View File

@ -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)
{