mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-02 10:36:22 +00:00
Merge pull request #10446 from unknownbrackets/ir-break
irjit: Allow continuing from mips break
This commit is contained in:
commit
baa4ceadd8
@ -789,8 +789,11 @@ u32 IRInterpret(MIPSState *mips, const IRInst *inst, const u32 *constPool, int c
|
||||
}
|
||||
|
||||
case IROp::Break:
|
||||
Crash();
|
||||
break;
|
||||
if (!g_Config.bIgnoreBadMemAccess) {
|
||||
Core_EnableStepping(true);
|
||||
host->SetDebugMode(true);
|
||||
}
|
||||
return mips->pc + 4;
|
||||
|
||||
case IROp::SetCtrlVFPU:
|
||||
mips->vfpuCtrl[inst->dest] = constPool[inst->src1];
|
||||
|
Loading…
Reference in New Issue
Block a user