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 933e16e6c5f35586c11f3b2bcc210f6752feda7f
parent 2f2d0d42ea72d538d14e07a05ee99fd59681a588
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Mon, 29 Jul 2024 14:36:27 +0200

we do not have an editor yet

Diffstat:
Msource/nord/n2x/n2xJucePlugin/n2xPluginProcessor.h | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/source/nord/n2x/n2xJucePlugin/n2xPluginProcessor.h b/source/nord/n2x/n2xJucePlugin/n2xPluginProcessor.h @@ -11,7 +11,10 @@ public: jucePluginEditorLib::PluginEditorState* createEditorState() override; synthLib::Device* createDevice() override; pluginLib::Controller* createController() override; - + bool hasEditor() const override + { + return false; + } private: JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(AudioPluginAudioProcessor) };