Menu

#4 Fix order of lsb/msb labels in mftext

open
nobody
None
5
2017-11-16
2017-11-16
No

diff -ru abc-sf/abcmidi/mftext.c abc-patch/abcmidi/mftext.c
--- abc-sf/abcmidi/mftext.c 2015-10-18 18:23:44.000000000 +0100
+++ abc-patch/abcmidi/mftext.c 2017-11-16 09:55:46.789615003 +0000
@@ -131,11 +131,11 @@
}

-void txt_pitchbend(chan,msb,lsb)
+void txt_pitchbend(chan,lsb,msb)
int chan, msb, lsb;
{
prtime();
- printf("Pitchbend, chan=%d msb=%d lsb=%d\n",chan+1,msb,lsb);
+ printf("Pitchbend, chan=%d lsb=%d msb=%d\n",chan+1,lsb,msb);
}

void txt_program(chan,program)

Discussion


Log in to post a comment.