From ee380f205e411d27811e1869d2473ae22b850b9b Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Tue, 3 Oct 2023 08:23:48 -0700 Subject: [PATCH] Fixed loading custom wavetables --- Changelist.txt | 6 ++++++ plugin/Source/PluginProcessor.cpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Changelist.txt b/Changelist.txt index b048b60..e6ef55d 100644 --- a/Changelist.txt +++ b/Changelist.txt @@ -1,3 +1,9 @@ +1.0.8: + +- Fixed loading custom Wavetables in second oscillator +- Added retrigger to oscillators +- Added 25% and 12.5% pulse wave sub oscillators + 1.0.7: - Fix broken pitch bend diff --git a/plugin/Source/PluginProcessor.cpp b/plugin/Source/PluginProcessor.cpp index e42df66..b858f39 100644 --- a/plugin/Source/PluginProcessor.cpp +++ b/plugin/Source/PluginProcessor.cpp @@ -557,7 +557,7 @@ void WavetableAudioProcessor::reloadWavetables() if (userTable2.getSize() > 0) { - if (shouldLoad (0, osc2Table.toString(), sr)) + if (shouldLoad (1, osc2Table.toString(), sr)) loadWaveTable (osc2Tables, sr, userTable2, "wav", osc2Size); } else if (auto mb = loadMemory (osc2Table.toString()); mb.getSize() > 0)