8000 mftext.c: wrong sequence of lsb/msb in output · Issue #6 · sshlien/abcmidi · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mftext.c: wrong sequence of lsb/msb in output #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
jer194 opened this issue Nov 1, 2021 · 0 comments
Open

mftext.c: wrong sequence of lsb/msb in output #6

jer194 opened this issue Nov 1, 2021 · 0 comments

Comments

@jer194
Copy link
jer194 commented Nov 1, 2021

Line 140, in mftext.c:
printf("Pitchbend, chan=%d lsb=%d msb=%d\n",chan+1,msb,lsb);

This is wrong I think.
It should read:

printf("Pitchbend, chan=%d lsb=%d msb=%d\n",chan+1,lsb,msb);

According to http://somascape.org/midi/tech/mfile.html, it is:

Pitch Bend
3 bytes : En lsb msb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant
0