This commit is contained in:
chriskiefer 2025-04-29 10:22:31 +01:00
parent dcf9c8435b
commit 78027db5ed
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit cc6874a43c046d71a69ec0697aad7c6708043877 Subproject commit e0d2a5ce112f76e337f697ad1a52df981cab88f9

View file

@ -291,7 +291,7 @@ public:
float lfo1val = (lfo1.triangle(lfo1freq) * lfo1depth); float lfo1val = (lfo1.triangle(lfo1freq) * lfo1depth);
svf.setParams(filter1freq * (1.f + lfo1val),filter1res); svf.setParams(filter1freq * (1.f + lfo1val),filter1res);
y = svf.play(y, filterMix,1.0-filterMix,0,0); y = svf.play(y, filterMix,1.0-filterMix,0,0);
y *= 0.2f; y *= 0.9f;
stereosample_t ret { y, y }; stereosample_t ret { y, y };
return ret; return ret;
} }