prevent filter modulation pops

This commit is contained in:
Jade (Rose) Rowland
2025-11-22 18:21:24 -05:00
parent 5fa6cb4653
commit 1d5f3a4f30
+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;
}