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)