mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-13 06:19:33 -04:00
hotfix: weird audion bug
This commit is contained in:
@@ -157,7 +157,7 @@ function getDelay(orbit, delaytime, delayfeedback, t) {
|
||||
if (!delays[orbit]) {
|
||||
const ac = getAudioContext();
|
||||
const dly = ac.createFeedbackDelay(1, delaytime, delayfeedback);
|
||||
dly.start(t);
|
||||
dly.start?.(t); // for some reason, this throws when audion extension is installed..
|
||||
dly.connect(getDestination());
|
||||
delays[orbit] = dly;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user