Skip to content

Commit

Permalink
Fix #326083: Capella (.cap) import does not handle breve notes correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz authored and igorkorsukov committed Nov 3, 2021
1 parent dab626d commit 46c73e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/importexport/capella/internal/capella.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2675,7 +2675,7 @@ Fraction BasicDurationalObj::ticks() const
break;
case TIMESTEP::D256: len = Fraction(1, 256);
break;
case TIMESTEP::D_BREVE: len = Fraction(2, 2);
case TIMESTEP::D_BREVE: len = Fraction(2, 1);
break;
default:
qDebug("BasicDurationalObj::ticks: illegal duration value %d", int(t));
Expand Down

0 comments on commit 46c73e6

Please sign in to comment.