Skip to content

Commit bd0d130

Browse files
committed
Fix minor bug
1 parent b96a027 commit bd0d130

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

JSFX/sjrb-MIDI-CC-to-ChanPressure.jsfx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
desc: MIDI CC to Channel Pressure
22
author: shawnb61
3-
version: 1.0
3+
version: 1.1
44
about:
55
MIDI CC to Channel Pressure
66

@@ -28,7 +28,7 @@ while (midirecv(mpos, msg1, msg2, msg3)) (
2828
// If requested, pass on original
2929
(eat == 0) ? midisend(mpos, xmsg1, xmsg2, msg3);
3030
// Transform to channel AT here, a 2-byte msg
31-
midisend(mpos, 0xC0 | msg_chan, msg3);
31+
midisend(mpos, 0xD0 | msg_chan, msg3);
3232
):(
3333
// Not my message, pass it on
3434
midisend(mpos, xmsg1, xmsg2, msg3);

0 commit comments

Comments
 (0)