Skip to content

Commit

Permalink
Fix holds not being truncated on triplets
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Dec 9, 2024
1 parent 6998ebe commit 3801208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/chart/ChartManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ export class ChartManager {
isHoldNote(note) &&
note.col == col &&
beat > note.beat &&
beat <= note.beat + note.hold
beat <= Math.round((note.beat + note.hold) * 48) / 48
)
.map(hold => {
return {
Expand Down

0 comments on commit 3801208

Please sign in to comment.