revert fix

This commit is contained in:
2023-11-10 13:56:25 +01:00
parent ca4f7acfe2
commit 2d8e21590c
2 changed files with 0 additions and 2 deletions

View File

@ -175,7 +175,6 @@ export class Clock {
if (ppqn > 0 && this._ppqn !== ppqn) {
this._ppqn = ppqn;
this.transportNode?.setPPQN(ppqn);
this.logicalTime = this.realTime;
}
}

View File

@ -24,7 +24,6 @@ class TransportProcessor extends AudioWorkletProcessor {
this.currentPulsePosition = currentTime;
} else if (message.data.type === "ppqn") {
this.ppqn = message.data.value;
this.currentPulsePosition = currentTime;
} else if (message.data.type === "nudge") {
this.nudge = message.data.value;
}