mirror of https://github.com/snes9xgit/snes9x.git
dsp: Fix typo by omission.
This commit is contained in:
parent
2afe4a11d4
commit
7b7ce04f29
|
@ -675,7 +675,7 @@ inline void SPC_DSP::decode_brr( voice_t* v )
|
||||||
if (shift <= 12)
|
if (shift <= 12)
|
||||||
s = (s << shift) >> 1;
|
s = (s << shift) >> 1;
|
||||||
else
|
else
|
||||||
s &= 0x7ff;
|
s &= ~0x7ff;
|
||||||
|
|
||||||
// Apply IIR filter (8 is the most commonly used)
|
// Apply IIR filter (8 is the most commonly used)
|
||||||
int const filter = header & 0x0C;
|
int const filter = header & 0x0C;
|
||||||
|
|
Loading…
Reference in New Issue