spu: don't crash on 1 cpu w/threads enabled
authornotaz <notasas@gmail.com>
Sun, 16 Mar 2025 23:14:07 +0000 (01:14 +0200)
committernotaz <notasas@gmail.com>
Sun, 16 Mar 2025 23:14:07 +0000 (01:14 +0200)
closes notaz/pcsx_rearmed#356

plugins/dfsound/spu.c

index 8159272..563146d 100644 (file)
@@ -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);
 }