Skip to content
Permalink
Browse files
Merge pull request #9929 from Tilka/ax
DSPHLE: re-enable low-pass filter
  • Loading branch information
JosJuice committed Jul 22, 2021
2 parents 484279f + 4a5c723 commit db5a787
Showing 1 changed file with 1 addition 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);
}

0 comments on commit db5a787

Please sign in to comment.