mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix bIgnoreBadMemAccess ignored in GetPointer.
This commit is contained in:
parent
50def41ffa
commit
12e2a56ef2
1 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,10 @@ u8 *GetPointer(const u32 address)
|
|||
else
|
||||
{
|
||||
ERROR_LOG(MEMMAP, "Unknown GetPointer %08x PC %08x LR %08x", address, currentMIPS->pc, currentMIPS->r[MIPS_REG_RA]);
|
||||
if (!g_Config.bIgnoreBadMemAccess) {
|
||||
Core_EnableStepping(true);
|
||||
host->SetDebugMode(true);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue