mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
fix crash on exit
This commit is contained in:
parent
856fa4c6e0
commit
37ecc904c7
2 changed files with 3 additions and 2 deletions
|
|
@ -1 +1 @@
|
||||||
Subproject commit 5a600d6b5287e5876d592bafebe4f9f0b9c32f54
|
Subproject commit 8f21f9b55d3981bffce8048da856e5c9780d8e1b
|
||||||
|
|
@ -854,7 +854,8 @@ void WavetableAudioProcessor::processBlock (juce::AudioBuffer<float>& buffer, ju
|
||||||
if (buffer.getNumChannels() != 2)
|
if (buffer.getNumChannels() != 2)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
midiLearn->processBlock (midi, buffer.getNumSamples());
|
if (midiLearn)
|
||||||
|
midiLearn->processBlock (midi, buffer.getNumSamples());
|
||||||
|
|
||||||
if (mtsClient)
|
if (mtsClient)
|
||||||
for (auto itr : midi)
|
for (auto itr : midi)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue