From: notaz Date: Sun, 16 Mar 2025 23:14:07 +0000 (+0200) Subject: spu: don't crash on 1 cpu w/threads enabled X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1192cb7bc38df8ac2a04662e3d8fd9ccf0997728;p=pcsx_rearmed.git spu: don't crash on 1 cpu w/threads enabled closes notaz/pcsx_rearmed#356 --- 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); }