mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Merge pull request #9929 from Tilka/ax
DSPHLE: re-enable low-pass filter
This commit is contained in:
commit
db5a78781f
1 changed files with 1 additions and 3 deletions
|
@ -419,9 +419,7 @@ void ProcessVoice(PB_TYPE& pb, const AXBuffers& buffers, u16 count, AXMixControl
|
|||
}
|
||||
|
||||
// Optionally, execute a low pass filter
|
||||
// TODO: LPF code is currently broken, causing Super Monkey Ball sound
|
||||
// corruption. Disabled until someone figures out what is wrong with it.
|
||||
if (0 && pb.lpf.enabled)
|
||||
if (pb.lpf.enabled)
|
||||
{
|
||||
pb.lpf.yn1 = LowPassFilter(samples, count, pb.lpf.yn1, pb.lpf.a0, pb.lpf.b0);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue