Merge branch 'DISTRHO:main' into CVfunk

This commit is contained in:
CV funk 2024-03-31 17:08:15 +02:00 committed by GitHub
commit 05d4f88c92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 2 deletions

@ -1 +1 @@
Subproject commit 4c55f117212e758324412efe73f2f573a18f75d3
Subproject commit d3ad6c6732cee8a80197aa351dd9efef9c278d4c

View file

@ -555,7 +555,7 @@ PLUGIN_FILES += $(filter-out Befaco/src/plugin.cpp,$(wildcard Befaco/src/*.cpp))
PLUGIN_FILES += $(wildcard Befaco/src/noise-plethora/*/*.cpp)
# modules/types which are present in other plugins
BEFACO_CUSTOM = ADSR Mixer chowdsp
BEFACO_CUSTOM = ADSR Mixer chowdsp Burst
# --------------------------------------------------------------
# Bidoo

View file

@ -137,9 +137,11 @@ extern Model* modelChord;
// Befaco
#define modelADSR modelBefacoADSR
#define modelMixer modelBefacoMixer
#define modelBurst modelBefacoBurst
#include "Befaco/src/plugin.hpp"
#undef modelADSR
#undef modelMixer
#undef modelBurst
// Bidoo
#include "Bidoo/src/plugin.hpp"
@ -1504,6 +1506,7 @@ static void initStatic__Befaco()
{
#define modelADSR modelBefacoADSR
#define modelMixer modelBefacoMixer
#define modelBurst modelBefacoBurst
p->addModel(modelEvenVCO);
p->addModel(modelRampage);
p->addModel(modelABC);
@ -1525,8 +1528,11 @@ static void initStatic__Befaco()
p->addModel(modelChannelStrip);
p->addModel(modelPonyVCO);
p->addModel(modelMotionMTR);
p->addModel(modelBurst);
p->addModel(modelVoltio);
#undef modelADSR
#undef modelMixer
#undef modelBurst
}
}