mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Fixed loading custom wavetables
This commit is contained in:
parent
67e057357f
commit
ee380f205e
2 changed files with 7 additions and 1 deletions
|
|
@ -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:
|
1.0.7:
|
||||||
|
|
||||||
- Fix broken pitch bend
|
- Fix broken pitch bend
|
||||||
|
|
|
||||||
|
|
@ -557,7 +557,7 @@ void WavetableAudioProcessor::reloadWavetables()
|
||||||
|
|
||||||
if (userTable2.getSize() > 0)
|
if (userTable2.getSize() > 0)
|
||||||
{
|
{
|
||||||
if (shouldLoad (0, osc2Table.toString(), sr))
|
if (shouldLoad (1, osc2Table.toString(), sr))
|
||||||
loadWaveTable (osc2Tables, sr, userTable2, "wav", osc2Size);
|
loadWaveTable (osc2Tables, sr, userTable2, "wav", osc2Size);
|
||||||
}
|
}
|
||||||
else if (auto mb = loadMemory (osc2Table.toString()); mb.getSize() > 0)
|
else if (auto mb = loadMemory (osc2Table.toString()); mb.getSize() > 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue