Make sure wavetables are reloaded

This commit is contained in:
Roland Rabien 2023-09-09 05:55:48 -07:00
commit 41027867d0
2 changed files with 4 additions and 1 deletions

@ -1 +1 @@
Subproject commit 636ac6050cc20b6e33b0814e170651b913db2e18
Subproject commit 9539048de0a3180c1709ab5fc31a21e0dbd432ca

View file

@ -545,6 +545,9 @@ void WavetableAudioProcessor::stateUpdated()
osc1Table = state.getProperty ("wt1");
osc2Table = state.getProperty ("wt2");
userTable1.reset();
userTable2.reset();
userTable1.fromBase64Encoding (state.getProperty ("wt1Data").toString());
userTable2.fromBase64Encoding (state.getProperty ("wt2Data").toString());