Comment #5 on issue 1412 by [email protected]: programming error: Going back in MIDI time
http://code.google.com/p/lilypond/issues/detail?id=1412

Let me add the workaround suggested by Carl here:
http://lists.gnu.org/archive/html/lilypond-user/2010-07/msg00163.html


\version "2.15.41"

music = \new Staff {
 \tempo 4 = 120
 \time 2/4

 \set Staff.midiInstrument = "church organ"

 \key a \minor

 \relative c'' {
  \tag #'midi {}
  \tag #'print { \acciaccatura gis'8 }
  a4  e8. d16
 }
}

\score {
 \keepWithTag #'print
 \music
 \layout {}
}

\score {
 \keepWithTag #'midi
 \music
 \midi {}
}



Reply via email to