MIDIDevice::send cable input is optional (defaults to cable 0)

This commit is contained in:
PaulStoffregen 2018-01-12 15:51:15 -08:00
parent 02ba9d9028
commit c07d78de13
1 changed files with 1 additions and 1 deletions

View File

@ -969,7 +969,7 @@ public:
sendControlChange(99, 0x7F, channel, cable); sendControlChange(99, 0x7F, channel, cable);
sendControlChange(98, 0x7F, channel, cable); sendControlChange(98, 0x7F, channel, cable);
} }
void send(uint8_t type, uint8_t data1, uint8_t data2, uint8_t channel, uint8_t cable) { void send(uint8_t type, uint8_t data1, uint8_t data2, uint8_t channel, uint8_t cable=0) {
//if (cable >= MIDI_NUM_CABLES) return; //if (cable >= MIDI_NUM_CABLES) return;
if (type < 0xF0) { if (type < 0xF0) {
if (type < 0x80) return; if (type < 0x80) return;