Skip to content

Commit

Permalink
Fix #328 load sysex bank from DAW
Browse files Browse the repository at this point in the history
  • Loading branch information
asb2m10 committed Aug 12, 2024
1 parent 325d43b commit ee6a188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ void DexedAudioProcessor::handleIncomingMidiMessage(MidiInput* source, const Mid

// test if it is a Yamaha Sysex
if ( buf[1] != 0x43 ) {
TRACE("not a yamaha sysex %d", buf[0]);
TRACE("not a yamaha sysex %d", buf[1]);
return;
}

Expand Down Expand Up @@ -669,8 +669,8 @@ void DexedAudioProcessor::handleIncomingMidiMessage(MidiInput* source, const Mid
TRACE("unknown sysex substatus: %d", substatus);
}

updateHostDisplay();
forceRefreshUI = true;
triggerAsyncUpdate();
}

int DexedAudioProcessor::getEngineType() {
Expand Down

0 comments on commit ee6a188

Please sign in to comment.