This commit is contained in:
Alexandre Ratchov 2012-10-05 14:24:38 +02:00
parent 2630880acc
commit 7709b5d017
1 changed files with 1 additions and 4 deletions

View File

@ -215,13 +215,10 @@ midi_send(struct midi *iep, unsigned char *msg, int size)
continue; continue;
oep = midi_ep + i; oep = midi_ep + i;
if (msg[0] <= 0x7f) { if (msg[0] <= 0x7f) {
/* data (sysex continuation) */
if (oep->owner != iep) if (oep->owner != iep)
continue; continue;
} else if (msg[0] <= 0xf7) { } else if (msg[0] <= 0xf7)
/* new running status */
oep->owner = iep; oep->owner = iep;
}
#ifdef DEBUG #ifdef DEBUG
if (log_level >= 4) { if (log_level >= 4) {
midi_log(iep); midi_log(iep);