Remove dithers

This commit is contained in:
Roland Rabien 2023-10-20 18:49:05 -07:00
commit a376041ab8
14 changed files with 356 additions and 78 deletions

View file

@ -78,6 +78,9 @@ void WavetableAudioProcessorEditor::addMenuItems (juce::PopupMenu& m)
m.addItem ("MPE", true, wtProc.globalParams.mpe->getUserValueBool(), [this]
{
wtProc.globalParams.mpe->setUserValue (wtProc.globalParams.mpe->getUserValueBool() ? 0.0f : 1.0f);
if (auto props = wtProc.getSettings())
props->setValue ("mpe", wtProc.globalParams.mpe->getUserValueBool());
});
auto setSize = [this] (float scale)