summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-12-16 03:04:20 +0000
committerSND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-12-16 03:04:20 +0000
commitff2ddb2b4ee24f73d172bd2f0630adb7aabd6f12 (patch)
tree58e0ec5125864f14655e343cdf403de4c1b90c09 /plugins
parent2ee29c700167a7ffd52c745a8b93dadf36a2c857 (diff)
downloadpcsxr-ff2ddb2b4ee24f73d172bd2f0630adb7aabd6f12.tar.gz
dfsound - spu.c
- (Hopkat) fix VAG $2 silence - fixes funny sounds (release too long) git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61220 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dfsound/spu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index 03f39c5c..74c3fca0 100644
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -539,7 +539,7 @@ static void *MAINThread(void *arg)
{
start=s_chan[ch].pCurr; // set up the current pos
- if (start == (unsigned char*)-1) // special "stop" sign
+ if (s_chan[ch].iSilent || start == (unsigned char*)-1) // special "stop" sign
{
s_chan[ch].bOn=0; // -> turn everything off
s_chan[ch].ADSRX.lVolume=0;