From 94c048d0188993d3d75c15e845fad2b5025eb329 Mon Sep 17 00:00:00 2001 From: Eladash <18193363+elad335@users.noreply.github.com> Date: Wed, 27 Mar 2024 11:29:26 +0200 Subject: [PATCH] SPU LLVM: Add assert for MFC abort --- rpcs3/Emu/Cell/SPULLVMRecompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp b/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp index 745573981f..4a2a616bbd 100644 --- a/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp +++ b/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp @@ -3070,7 +3070,7 @@ public: { if (!_spu->process_mfc_cmd() || _spu->state & cpu_flag::again) { - spu_runtime::g_escape(_spu); + fmt::throw_exception("exec_mfc_cmd(): Should not abort!"); } static_cast(_spu->test_stopped());