diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-12-07 13:14:57 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-12-07 13:14:57 +0000 |
| commit | 2461ae5676a3898492c3d87b07f495a37f829c2a (patch) | |
| tree | 77e75b856b8f7291568e9188b352585c4829e38c /plugins | |
| parent | 87b1b43e2827bf45f57fe6463cfbfb6b64c485a0 (diff) | |
| download | pcsxr-2461ae5676a3898492c3d87b07f495a37f829c2a.tar.gz | |
dfsound - spu.c
- compile error (DSound -> dfsound)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@60761 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/dfsound/spu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index 85e6e715..c89704b3 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -615,17 +615,17 @@ static void *MAINThread(void *arg) // Jungle Book - Rhythm 'n Groove - use external loop address
// - fixes music player (+IRQ generate)
- if((flags&4) && (pChannel->bIgnoreLoop == 0))
- pChannel->pLoop=start-16;
+ if((flags&4) && (s_chan[ch].bIgnoreLoop == 0))
+ s_chan[ch].pLoop=start-16;
// Jungle Book - Rhythm 'n Groove - don't reset ignore status
// - fixes gameplay speed (IRQ hits)
- //pChannel->bIgnoreLoop = 0;
+ //s_chan[ch].bIgnoreLoop = 0;
if(flags&1)
{
- start = pChannel->pLoop;
+ start = s_chan[ch].pLoop;
// Xenogears - 7 = menu sound + other missing sounds
// TODO: SILENCE flag + DQ4 check (loop hangs?)
@@ -633,7 +633,7 @@ static void *MAINThread(void *arg) start = (unsigned char *) -1;
// stop check?
- if( pChannel->pLoop == 0 )
+ if( s_chan[ch].pLoop == 0 )
start = (unsigned char *) -1;
}
|
