From 41b8a570dc14c42238897cd97c0b312838d0efd1 Mon Sep 17 00:00:00 2001 From: Emmanuel Maillard Date: Mon, 30 Apr 2007 14:34:23 +0200 Subject: [PATCH] winecoreaudio.drv: MIDIIn_MessageHandler: Remove a TRACE and simplify skipping SysEx. --- dlls/winecoreaudio.drv/midi.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dlls/winecoreaudio.drv/midi.c b/dlls/winecoreaudio.drv/midi.c index f10f5f0b6a7..ba6c40e654d 100644 --- a/dlls/winecoreaudio.drv/midi.c +++ b/dlls/winecoreaudio.drv/midi.c @@ -845,7 +845,6 @@ static CFDataRef MIDIIn_MessageHandler(CFMessagePortRef local, SInt32 msgid, CFD MIDISource *src = NULL; DWORD sendData = 0; - TRACE("\n"); switch (msgid) { case 0: @@ -866,15 +865,6 @@ static CFDataRef MIDIIn_MessageHandler(CFMessagePortRef local, SInt32 msgid, CFD { FIXME("Starting System Exclusive\n"); src->state |= 2; - for (i = 0; i < msg->length; ++i) - { - if (msg->data[i] == 0xF7) - { - FIXME("Ending System Exclusive\n"); - src->state &= ~2; - } - } - goto done; } if (src->state & 2) {