Skip to content

Commit

Permalink
Fixed typo where querying for an NRPN parameter would send it as RPN …
Browse files Browse the repository at this point in the history
…instead.
  • Loading branch information
gbevin committed Feb 17, 2020
1 parent aea121c commit 3343825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ls_midi.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1592,7 +1592,7 @@ void sendNrpnParameter(int parameter, int channel) {
}

if (value != INT_MIN) {
midiSendRPN(parameter, value, channel);
midiSendNRPN(parameter, value, channel);
}
}

Expand Down

0 comments on commit 3343825

Please sign in to comment.