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 4, 2024
1 parent 2a2f880 commit 482c8cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,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 @@ -670,8 +670,8 @@ void DexedAudioProcessor::handleIncomingMidiMessage(MidiInput* source, const Mid
TRACE("unknown sysex substatus: %d", substatus);
}

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

int DexedAudioProcessor::getEngineType() {
Expand Down
2 changes: 1 addition & 1 deletion libs/JUCE
Submodule JUCE updated 470 files

0 comments on commit 482c8cd

Please sign in to comment.