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 b3ddaf72321dd6a5e780a9c5f14fbf2b0cb8ae4c
parent 6b75671c21f718ae531077ea4d0a8ebbd128e3c2
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 21 Apr 2024 17:13:27 +0200

fix errors after merge

Diffstat:
Msource/virusJucePlugin/Leds.cpp | 2+-
Msource/virusJucePlugin/Leds.h | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/source/virusJucePlugin/Leds.cpp b/source/virusJucePlugin/Leds.cpp @@ -10,7 +10,7 @@ namespace genericVirusUI constexpr const char* g_lfoNames[3] = {"Lfo1LedOn", "Lfo2LedOn", "Lfo3LedOn"}; - Leds::Leds(const genericUI::Editor& _editor, AudioPluginAudioProcessor& _processor) : m_processor(_processor), m_logoAnimationEnabled(_processor.getConfig().getBoolValue(g_logoAnimKey, true)) + Leds::Leds(const genericUI::Editor& _editor, VirusProcessor& _processor) : m_processor(_processor), m_logoAnimationEnabled(_processor.getConfig().getBoolValue(g_logoAnimKey, true)) { for(size_t i=0; i<m_lfos.size(); ++i) { diff --git a/source/virusJucePlugin/Leds.h b/source/virusJucePlugin/Leds.h @@ -12,7 +12,7 @@ namespace juce class MouseListener; } -class AudioPluginAudioProcessor; +class VirusProcessor; namespace genericUI { @@ -41,7 +41,7 @@ namespace genericVirusUI Leds& m_leds; }; - Leds(const genericUI::Editor& _editor, AudioPluginAudioProcessor& _processor); + Leds(const genericUI::Editor& _editor, VirusProcessor& _processor); ~Leds(); void toggleLogoAnimation(); @@ -50,7 +50,7 @@ namespace genericVirusUI bool isLogoAnimationEnabled() const { return m_logoAnimationEnabled; } private: - AudioPluginAudioProcessor& m_processor; + VirusProcessor& m_processor; bool m_logoAnimationEnabled = true; std::array<std::unique_ptr<jucePluginEditorLib::Led>, 3> m_lfos;