gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 9efe32ee6c57f89a290b6146e47322f9081f9612
parent eb10dca6c195500c4ec55b381f93b88d77942bc1
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed, 29 Dec 2021 12:47:51 +0100

use std::array instead of raw C array for filters

Diffstat:
Msource/jucePlugin/ui/Virus_OscEditor.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/source/jucePlugin/ui/Virus_OscEditor.h b/source/jucePlugin/ui/Virus_OscEditor.h @@ -89,7 +89,8 @@ private: juce::Slider m_keyTrack; juce::Slider m_resVel; juce::Slider m_envVel; - } m_filter[2]; + }; + std::array<Filter, 2> m_filter; juce::Slider m_filterBalance; Buttons::EnvPol m_envPol[2]; Buttons::LinkButton m_link1, m_link2;