aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authornotaz2013-01-03 02:00:44 +0200
committernotaz2013-01-03 02:00:44 +0200
commit7ba3e79c025dfd41ba88bcbe7b330a1a7fd68551 (patch)
treeab7b9fb3383c1f135b43abd62262b74fd838fe88 /plugins
parent53598a714ded20ee4bb703dcadaaa7b027d59cf4 (diff)
downloadpcsx_rearmed-7ba3e79c025dfd41ba88bcbe7b330a1a7fd68551.tar.gz
pcsx_rearmed-7ba3e79c025dfd41ba88bcbe7b330a1a7fd68551.tar.bz2
pcsx_rearmed-7ba3e79c025dfd41ba88bcbe7b330a1a7fd68551.zip
spu: also return on decoder irqs
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dfsound/spu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index 2466569..9f91b8b 100644
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -689,7 +689,7 @@ static int do_samples(int forced_updates)
int ch,d,silentch;
int bIRQReturn=0;
- while(1)
+ while(!bIRQReturn)
{
// ok, at the beginning we are looking if there is
// enuff free place in the dsound/oss buffer to
@@ -863,6 +863,7 @@ static int do_samples(int forced_updates)
{
//printf("decoder irq %x\n", decode_pos);
do_irq();
+ bIRQReturn = 1;
}
}
decode_pos = (decode_pos + NSSIZE) & 0x1ff;