On Thursday, 11 March 1999, Mats Bengtsson writes:
> Fixed a couple of small bugs
> 
> - The '^' and '-' script directions had been flopped. (I think I've
>   reported this one before)
> - Midi channel numbers count from 0, so the 10:th channel

Ok.

>   has number 9 and the first channel was unused. At least
>   that's what timidity and playmidi tells me.

Track 0 is supposed to be used by lily as 'info track', see
performance.cc:output_header_track.

> -  int n = 1;
> +  int n = 0;

so i think this should be reverted.

>    for (int i =0; i < audio_staff_l_arr_.size (); i++)
>      {
>        Audio_staff *s = audio_staff_l_arr_[i];
> @@ -60,7 +60,7 @@
>         MIDI players tend to ignore instrument settings on
>         channel 10, the percussion channel by default.
>         */
> -      if (n == 10)
> +      if (n == 9)

Ok.


Jan.

Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien/      | http://www.lilypond.org/

Reply via email to