Skip to content

Commit

Permalink
fix: bad direction of beamed notes in single tunes
Browse files Browse the repository at this point in the history
The bug was introduced by commit 1470bdb.

Reported by David Lacroix.
  • Loading branch information
moinejf committed Nov 14, 2017
1 parent 4da63d1 commit 755805f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music.c
Original file line number Diff line number Diff line change
Expand Up @@ -3730,7 +3730,7 @@ static void set_beams(struct SYMBOL *sym)
mid_p *= 2;
if (pu + pd < mid_p) {
s->stem = 1;
} else if (pu + pd < mid_p) {
} else if (pu + pd > mid_p) {
s->stem = -1;
} else {
if (cfmt.bstemdown)
Expand Down

0 comments on commit 755805f

Please sign in to comment.