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 b5e7bf7b69eb1d6276b5342b645095096bce7796
parent bda73403cfb7d26dc913bb5fe85356acff0edab2
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 27 Oct 2024 21:10:07 +0100

prefer new rom folders over old ones

Diffstat:
Msource/jucePluginLib/processor.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePluginLib/processor.cpp b/source/jucePluginLib/processor.cpp @@ -26,9 +26,9 @@ namespace pluginLib Processor::Processor(const BusesProperties& _busesProperties, Properties _properties) : juce::AudioProcessor(_busesProperties), m_properties(std::move(_properties)), m_midiPorts(*this) { + synthLib::RomLoader::addSearchPath(getPublicRomFolder()); synthLib::RomLoader::addSearchPath(synthLib::getModulePath(true)); synthLib::RomLoader::addSearchPath(synthLib::getModulePath(false)); - synthLib::RomLoader::addSearchPath(getPublicRomFolder()); } Processor::~Processor()