R5900 interpreter: Fix breakpoint exits

Exit exceptions were not being caught, causing a crash.
This commit is contained in:
Ty Lamontagne 2023-04-27 21:47:52 -04:00 committed by refractionpcsx2
parent 029c11c8d2
commit ab9a1e4307
1 changed files with 1 additions and 1 deletions

View File

@ -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)