diff --git a/Core/MIPS/MIPSInt.cpp b/Core/MIPS/MIPSInt.cpp index 39bd78ec84..471a6f0e6b 100644 --- a/Core/MIPS/MIPSInt.cpp +++ b/Core/MIPS/MIPSInt.cpp @@ -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