From 1192cb7bc38df8ac2a04662e3d8fd9ccf0997728 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 17 Mar 2025 01:14:07 +0200 Subject: [PATCH] spu: don't crash on 1 cpu w/threads enabled closes notaz/pcsx_rearmed#356 --- plugins/dfsound/spu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index 81592723..563146da 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -1577,7 +1577,8 @@ static void exit_spu_thread(void) long CALLBACK SPUfreeze(unsigned int ulFreezeMode, struct SPUFreeze * pF, unsigned int cycles) { - sync_worker_thread(1); + if (worker != NULL) + sync_worker_thread(1); return DoFreeze(ulFreezeMode, pF, cycles); } -- 2.39.5