Browse Source

Handle Befaco ADSR conflict

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX 4 years ago
parent
commit
9eb553eb3c
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 7 additions and 0 deletions
  1. +3
    -0
      plugins/Makefile
  2. +4
    -0
      plugins/plugins.cpp

+ 3
- 0
plugins/Makefile View File

@@ -308,6 +308,9 @@ PLUGIN_FILES += AudibleInstruments/eurorack/streams/compressor.cc
PLUGIN_FILES += $(filter-out Befaco/src/plugin.cpp,$(wildcard Befaco/src/*.cpp))
PLUGIN_BINARIES += Befaco/src/SpringReverbIR.pcm

# modules/types which are present in other plugins
BEFACO_CUSTOM = ADSR

# --------------------------------------------------------------
# Bidoo



+ 4
- 0
plugins/plugins.cpp View File

@@ -40,7 +40,9 @@
#include "AudibleInstruments/src/plugin.hpp"

// Befaco
#define modelADSR modelBefacoADSR
#include "Befaco/src/plugin.hpp"
#undef modelADSR

// Bidoo
#include "Bidoo/src/plugin.hpp"
@@ -544,6 +546,7 @@ static void initStatic__Befaco()
const StaticPluginLoader spl(p, "Befaco");
if (spl.ok())
{
#define modelADSR modelBefacoADSR
p->addModel(modelEvenVCO);
p->addModel(modelRampage);
p->addModel(modelABC);
@@ -561,6 +564,7 @@ static void initStatic__Befaco()
p->addModel(modelSTMix);
p->addModel(modelMuxlicer);
p->addModel(modelMex);
#undef modelADSR
}
}



Loading…
Cancel
Save