mirror of https://github.com/PCSX2/pcsx2.git
R5900 interpreter: Fix breakpoint exits
Exit exceptions were not being caught, causing a crash.
This commit is contained in:
parent
029c11c8d2
commit
ab9a1e4307
|
@ -56,7 +56,7 @@ void intBreakpoint(bool memcheck)
|
|||
|
||||
CBreakPoints::SetBreakpointTriggered(true);
|
||||
VMManager::SetPaused(true);
|
||||
throw Exception::ExitCpuExecute();
|
||||
Cpu->ExitExecution();
|
||||
}
|
||||
|
||||
void intMemcheck(u32 op, u32 bits, bool store)
|
||||
|
|
Loading…
Reference in New Issue