SmartGuitarAmp

Guitar plugin made with JUCE that uses neural networks to emulate a tube amplifier
Log | Files | Refs | Submodules | README

commit b387dfe886cc33360a1c162fffeadeceec658d20
parent e94e7bcfb595b4aa3a3be74c18cacd18105e5a03
Author: Keith Bloemer <[email protected]>
Date:   Wed, 14 Oct 2020 10:39:15 -0500

Update PluginEditor.cpp

Fixed copy and paste typo
Diffstat:
Mplugins/SmartAmp/Source/PluginEditor.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/SmartAmp/Source/PluginEditor.cpp b/plugins/SmartAmp/Source/PluginEditor.cpp @@ -119,7 +119,7 @@ WaveNetVaAudioProcessorEditor::WaveNetVaAudioProcessorEditor (WaveNetVaAudioProc ampLeadTrebleKnob.setLookAndFeel(&ampSilverKnobLAF); ampLeadTrebleKnob.addListener(this); ampLeadTrebleKnob.setRange(-8.0, 8.0); - ampLeadTrebleKnob.setValue(processor.ampCleanTrebleKnobState); + ampLeadTrebleKnob.setValue(processor.ampLeadTrebleKnobState); ampLeadTrebleKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampLeadTrebleKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); ampLeadTrebleKnob.setNumDecimalPlacesToDisplay(1);