From 2cb0631efc548064502844949ab30502ca221c21 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Sat, 21 May 2022 11:25:59 +0200 Subject: [PATCH] Several fixes for SYSEX handling. --- src/mididevice.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mididevice.cpp b/src/mididevice.cpp index c7ec76b..6a1a400 100644 --- a/src/mididevice.cpp +++ b/src/mididevice.cpp @@ -163,15 +163,15 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign { for (unsigned nTG = 0; nTG < CConfig::ToneGenerators; nTG++) { - // MIDI SYSEX per MIDI channel - uint8_t ucSysExChannel = (pMessage[2] & 0x07) + 1; - if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN && - (m_ChannelMap[nTG] == ucSysExChannel || - m_ChannelMap[nTG] == OmniMode) - ) + if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN) { - LOGNOTE("MIDI-SYSEX: channel: %u, len: %u, TG: %u",m_ChannelMap[nTG],nTG); - HandleSystemExclusive(pMessage, nLength, nTG); + // MIDI SYSEX per MIDI channel + uint8_t ucSysExChannel = (pMessage[2] & 0x07); + if (m_ChannelMap[nTG] == ucSysExChannel || m_ChannelMap[nTG] == OmniMode) + { + LOGNOTE("MIDI-SYSEX: channel: %u, len: %u, TG: %u",m_ChannelMap[nTG],nLength,nTG); + HandleSystemExclusive(pMessage, nLength, nTG); + } } else {