summaryrefslogtreecommitdiff
path: root/02-song2
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2015-11-11 21:39:56 +0100
committerrekado <rekado@elephly.net>2015-11-11 21:39:56 +0100
commit419a1bc6b34e5b2141125d517d8afd32b871dcb1 (patch)
treee20ecd637f2554cca2ef8b5ade76c1b26bd21b53 /02-song2
parent6b72c4d106782c37840a64ef0811e23abdae2669 (diff)
song2: click: Do not draw staff in score.
... just use it for MIDI.
Diffstat (limited to '02-song2')
-rw-r--r--02-song2/02-song2.ly8
1 files changed, 6 insertions, 2 deletions
diff --git a/02-song2/02-song2.ly b/02-song2/02-song2.ly
index 92bb234..715c161 100644
--- a/02-song2/02-song2.ly
+++ b/02-song2/02-song2.ly
@@ -16,13 +16,17 @@ AllMusic = <<
\new Staff = "keyboard" { \keyboard }
\new Staff = "bass" { \bass }
\new Staff = "grand stick" { \stick }
- \new DrumStaff { \click }
>>
%% Two scores are needed: one with unfolded repeats for MIDI and the
%% other with regular repeats for notation.
\score {
- \unfoldRepeats { \AllMusic }
+ \unfoldRepeats {
+ <<
+ \AllMusic
+ \new DrumStaff { \click }
+ >>
+ }
\midi { \tempo 4 = 90 }
}