diff options
| author | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-12-16 00:09:15 +0000 |
|---|---|---|
| committer | SND\shalma_cp <SND\shalma_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-12-16 00:09:15 +0000 |
| commit | 2ee29c700167a7ffd52c745a8b93dadf36a2c857 (patch) | |
| tree | 9decb0f3a6796f5ff76a45607d1b71dddfd8b900 /plugins | |
| parent | b9d1c7513f22f86b581e9d4ab85cdbf30b4b37b5 (diff) | |
| download | pcsxr-2ee29c700167a7ffd52c745a8b93dadf36a2c857.tar.gz | |
dfsound - spu.c
- cleanup next careless shalma error (iStop -> bStop)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61213 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/dfsound/externals.h | 1 | ||||
| -rw-r--r-- | plugins/dfsound/spu.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/plugins/dfsound/externals.h b/plugins/dfsound/externals.h index 4488e168..24176e55 100644 --- a/plugins/dfsound/externals.h +++ b/plugins/dfsound/externals.h @@ -129,7 +129,6 @@ typedef struct int bIgnoreLoop; // ignore loop bit, if an external loop address is used
int iMute; // mute mode (debug)
int iSilent; // voice on - sound on/off
- int iStop; //
int iRightVolume; // right volume
int iRightVolRaw; // right psx volume value
int iRawPitch; // raw pitch (0...3fff)
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index 5a0f1787..03f39c5c 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -632,7 +632,7 @@ static void *MAINThread(void *arg) // (?) - silence flag (voice still plays?)
if( (flags&2) == 0 ) {
s_chan[ch].iSilent = 1;
- s_chan[ch].iStop = 1;
+ s_chan[ch].bStop = 1;
//start = (unsigned char *) -1;
}
}
|
