notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60e4e7d
)
spu: don't crash on 1 cpu w/threads enabled
author
notaz
<notasas@gmail.com>
Sun, 16 Mar 2025 23:14:07 +0000
(
01:14
+0200)
committer
notaz
<notasas@gmail.com>
Sun, 16 Mar 2025 23:14:07 +0000
(
01:14
+0200)
closes notaz/pcsx_rearmed#356
plugins/dfsound/spu.c
patch
|
blob
|
blame
|
history
diff --git
a/plugins/dfsound/spu.c
b/plugins/dfsound/spu.c
index
8159272
..
563146d
100644
(file)
--- 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);
}