mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Don't crash trying to clear the icache in interpreter mode
This commit is contained in:
parent
c9ed58854a
commit
d394282bc6
1 changed files with 3 additions and 1 deletions
|
@ -129,7 +129,9 @@ namespace MIPSInt
|
|||
// Icache
|
||||
case 8:
|
||||
// Invalidate the instruction cache at this address
|
||||
MIPSComp::jit->ClearCacheAt(addr, 0x40);
|
||||
if (MIPSComp::jit) {
|
||||
MIPSComp::jit->ClearCacheAt(addr, 0x40);
|
||||
}
|
||||
break;
|
||||
|
||||
// Dcache
|
||||
|
|
Loading…
Add table
Reference in a new issue