Skip to content

Commit

Permalink
Merge pull request #2070 from Jojo-Schmitz/arpeggio-playback
Browse files Browse the repository at this point in the history
fix #65421: straight arpeggio down playback
  • Loading branch information
lasconic committed Jun 22, 2015
2 parents 311690a + dc062f6 commit 563b7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/rendermidi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ void renderArpeggio(Chord *chord, QList<NoteEventList> & ell)
while (l * notes > chord->upNote()->playTicks())
l = 2*l / 3;
int start, end, step;
bool up = chord->arpeggio()->arpeggioType() != ArpeggioType::DOWN;
bool up = chord->arpeggio()->arpeggioType() != ArpeggioType::DOWN && chord->arpeggio()->arpeggioType() != ArpeggioType::DOWN_STRAIGHT;
if (up) {
start = 0;
end = notes;
Expand Down

0 comments on commit 563b7d1

Please sign in to comment.