1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-03-11 04:42:20 +00:00

Attempt further to improve filter precision.

This commit is contained in:
Thomas Harte
2025-11-13 11:54:37 -05:00
parent d00546dd77
commit 86bf019aac
2 changed files with 30 additions and 7 deletions

View File

@@ -112,7 +112,7 @@ void SID::update_filter() {
type,
1'000'000.0f,
30.0f + float(filter_cutoff_.get()) * 5.8f,
0.707f + float(filter_resonance_.get()) * 0.25f,
0.707f + float(filter_resonance_.get()) * 0.125f,
6.0f,
true
);