From cb743da2153d0b8ae4ab8578711d382e32ae8563 Mon Sep 17 00:00:00 2001 From: Elad Ashkenazi Date: Thu, 6 Oct 2022 10:48:11 +0300 Subject: [PATCH] sys_spu: fixup raw spu destroy regression Caused a missed cpu_thread::state notification which is required now. --- rpcs3/Emu/Cell/lv2/sys_spu.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_spu.cpp b/rpcs3/Emu/Cell/lv2/sys_spu.cpp index 4d242c3073..a1ed1f4558 100644 --- a/rpcs3/Emu/Cell/lv2/sys_spu.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_spu.cpp @@ -2346,7 +2346,6 @@ error_code raw_spu_destroy(ppu_thread& ppu, u32 id) } // Stop thread - thread.state += cpu_flag::exit; thread = thread_state::aborting; return true; });