From 3b445ae210172cb2880386d26769a6e39159baad Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Mon, 4 Sep 2023 02:28:21 +0200 Subject: [PATCH] probably a safer value --- src/classes/SoundEvent.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/classes/SoundEvent.ts b/src/classes/SoundEvent.ts index 9533761..d55008a 100644 --- a/src/classes/SoundEvent.ts +++ b/src/classes/SoundEvent.ts @@ -161,10 +161,6 @@ export class SoundEvent extends AudibleEvent { }; out = (): object => { - return superdough( - this.values, - this.app.clock.pulse_duration, - this.values.dur || 0.5 - ); + return superdough(this.values, 1 / 4, this.values.dur || 0.5); }; }