From 2dae678b37b2b770f2aca4f877f6e220b3176ada Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Fri, 10 Nov 2023 14:01:38 +0100 Subject: [PATCH] lower ppqn --- src/Clock.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Clock.ts b/src/Clock.ts index 670d60e..a06d342 100644 --- a/src/Clock.ts +++ b/src/Clock.ts @@ -54,7 +54,7 @@ export class Clock { this.logicalTime = 0; this.tick = 0; this._bpm = 120; - this._ppqn = 48 * 4; + this._ppqn = 48 * 2; this.transportNode = null; this.ctx = ctx; this.running = true;