From 9ca325c92722b2c5f9c237652be0298867e3575f Mon Sep 17 00:00:00 2001 From: Miika Alonen Date: Tue, 31 Oct 2023 01:27:44 +0200 Subject: [PATCH] Fixing the fix for bpm --- src/Clock.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Clock.ts b/src/Clock.ts index d54ac9a..428dae8 100644 --- a/src/Clock.ts +++ b/src/Clock.ts @@ -155,6 +155,7 @@ export class Clock { if (bpm > 0 && this._bpm !== bpm) { this.transportNode?.setBPM(bpm); this._bpm = bpm; + this.logicalTime = this.realTime; } }