summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2021-07-22 19:05:29 +0200
committerGitHub <noreply@github.com>2021-07-22 19:05:29 +0200
commitdb5a78781f7df896b3c2e3d41f2ca26dfa5b36a1 (patch)
tree64496d872a4f6d381744ee5769c2673c820ef636 /Source
parent484279f013bd375f6f0107a557897e3768a38972 (diff)
parent4a5c723114bb0a6eada92e29b1de134b46a28685 (diff)
Merge pull request #9929 from Tilka/ax
DSPHLE: re-enable low-pass filter
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/DSPHLE/UCodes/AXVoice.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/Core/HW/DSPHLE/UCodes/AXVoice.h b/Source/Core/Core/HW/DSPHLE/UCodes/AXVoice.h
index b35016c7b6..cdf4ab5f01 100644
--- a/Source/Core/Core/HW/DSPHLE/UCodes/AXVoice.h
+++ b/Source/Core/Core/HW/DSPHLE/UCodes/AXVoice.h
@@ -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);
}