Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/PlaybackScheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class PlaybackScheduler {
private schedulerIntervalHandle: number = null;
private scheduleInterval: number = 200; // Milliseconds
private schedulePeriod: number = 500;
private tickDenominator: number = 1024;
private tickDenominator: number = 60480; // 60480 = 2^6 × 3^3 × 5 × 7: 64th notes, triple-nested triplets, quintuplets, septuplets

private lastTickOffset: number = 300; // Hack to get the initial notes play better
private playing: boolean = false;
Expand Down