From 77f2a4577fee7184c8aa7d6414d61643d53429c0 Mon Sep 17 00:00:00 2001 From: Elad <18193363+elad335@users.noreply.github.com> Date: Sun, 21 Sep 2025 16:31:58 +0300 Subject: [PATCH] SPU: Fix group wakeup --- rpcs3/Emu/Cell/SPUThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPUThread.cpp b/rpcs3/Emu/Cell/SPUThread.cpp index 877f07e6c1..beec3beeba 100644 --- a/rpcs3/Emu/Cell/SPUThread.cpp +++ b/rpcs3/Emu/Cell/SPUThread.cpp @@ -6959,7 +6959,7 @@ extern void resume_spu_thread_group_from_waiting(spu_thread& spu, std::arraystate -= cpu_flag::suspend; } - notify_spus[thread->index] = thread; + notify_spus[group->threads_map[thread->index]] = thread; } } }