dsp: Fix typo by omission.

This commit is contained in:
BearOso 2023-05-01 11:52:12 -05:00
parent 2afe4a11d4
commit 7b7ce04f29
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ inline void SPC_DSP::decode_brr( voice_t* v )
if (shift <= 12)
s = (s << shift) >> 1;
else
s &= 0x7ff;
s &= ~0x7ff;
// Apply IIR filter (8 is the most commonly used)
int const filter = header & 0x0C;