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 2b7b3a4b6b00b8bace96c099d139039436dee12c
parent f345982ed854f9052d3fb8eff75c67a6435ea3a2
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 10 Mar 2022 09:51:57 +0100

fix compile error

Diffstat:
Msource/jucePlugin/ui2/Virus_Panel3_FxEditor.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/jucePlugin/ui2/Virus_Panel3_FxEditor.cpp b/source/jucePlugin/ui2/Virus_Panel3_FxEditor.cpp @@ -177,7 +177,7 @@ FxEditor::FxEditor(VirusParameterBinding &_parameterBinding, AudioPluginAudioPro _parameterBinding.bind(m_reverbColoration, Virus::Param_DelayColor); _parameterBinding.bind(m_reverbPredelay, Virus::Param_DelayTime); _parameterBinding.bind(m_reverbFeedback, Virus::Param_DelayFeedback); - _parameterBinding.bind(m_reverbType, Virus::Param_DelayDepthReverbRoomSize); + _parameterBinding.bind(m_reverbType, Virus::Param_ReverbRoomSize); // todo Need to check these parameters bindings for delay and reverb // Delay @@ -201,7 +201,7 @@ FxEditor::FxEditor(VirusParameterBinding &_parameterBinding, AudioPluginAudioPro _parameterBinding.bind(m_delayRate, Virus::Param_DelayRateReverbDecayTime); _parameterBinding.bind(m_delayFeedback, Virus::Param_DelayFeedback); _parameterBinding.bind(m_delayColoration, Virus::Param_DelayColor); - _parameterBinding.bind(m_delayDepth, Virus::Param_DelayDepthReverbRoomSize); + _parameterBinding.bind(m_delayDepth, Virus::Param_DelayDepth); _parameterBinding.bind(m_delayClock, Virus::Param_DelayClock); _parameterBinding.bind(m_delayShape, Virus::Param_DelayLfoShape);