Merge pull request 'FIX: prevent LFO filter modulation from popping from negative values' (#1767) from lpmod_improvements into main

Reviewed-on: https://codeberg.org/uzu/strudel/pulls/1767
This commit is contained in:
Switch Angel AKA Jade Rose
2025-11-23 00:52:27 +01:00
+1 -1
View File
@@ -238,7 +238,7 @@ export function createFilter(context, start, end, params, cps) {
if (sync != null) {
rate = cps * sync;
}
const lfoValues = { depth, dcoffset, skew, shape, frequency: rate };
const lfoValues = { depth, dcoffset, skew, shape, frequency: rate, min: 10, max: 20000 };
getParamLfo(context, frequencyParam, start, end, lfoValues);
return filter;
}