Faster PPQN and bigger latency

This commit is contained in:
2023-11-10 13:42:59 +01:00
parent c4f9cdccf2
commit ca4f7acfe2
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ export class Clock {
this.logicalTime = 0;
this.tick = 0;
this._bpm = 120;
this._ppqn = 48;
this._ppqn = 48 * 4;
this.transportNode = null;
this.ctx = ctx;
this.running = true;

View File

@ -83,7 +83,7 @@ export class Editor {
// Audio stuff
audioContext: AudioContext;
clock: Clock;
dough_nudge: number = 20;
dough_nudge: number = 40;
manualPlay: boolean = false;
isPlaying: boolean = false;