mirror of
https://github.com/microtherion/VocalEasel.git
synced 2025-01-03 08:54:00 +00:00
Fix triplet handling
This commit is contained in:
parent
a65a85cadd
commit
40a84a82e9
|
@ -170,7 +170,7 @@ void VLLilypondWriter::VisitNote(VLLyricsNote & n)
|
||||||
strcpy(duration, ".");
|
strcpy(duration, ".");
|
||||||
else if (n.fVisual & VLNote::kTriplet)
|
else if (n.fVisual & VLNote::kTriplet)
|
||||||
sprintf(duration, "%s\\times 2/3 { %s%d%s }",
|
sprintf(duration, "%s\\times 2/3 { %s%d%s }",
|
||||||
space, nm.c_str(), kValue[n.fVisual], tie);
|
space, nm.c_str(), kValue[n.fVisual & VLNote::kNoteHead], tie);
|
||||||
else
|
else
|
||||||
sprintf(duration, "%s%s%d%s", space, nm.c_str(), kValue[n.fVisual], tie);
|
sprintf(duration, "%s%s%d%s", space, nm.c_str(), kValue[n.fVisual], tie);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user