Skip to content

Commit b7f756c

Browse files
committed
Tweak name conflicts for dBiz
Signed-off-by: falkTX <[email protected]>
1 parent 46dcb39 commit b7f756c

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
*Cardinal, the Rack!*
44

55
Cardinal is a free and open-source virtual modular synthesizer plugin,
6-
available as JACK standalone and AU, LV2, VST2, VST3 and CLAP audio plugin for FreeBSD, Linux, macOS and Windows.
6+
available as CLAP, LV2, VST2 and VST3 audio plugin for FreeBSD, Linux, macOS and Windows.
7+
Plus AU and JACK or Native audio standalone for some systems.
78
It is based on the popular [VCV Rack](https://vcvrack.com/) but with a focus on being a fully self-contained plugin version.
89

910
More specifically, this is a [DPF-based](https://github.com/DISTRHO/DPF/)

dpf

plugins/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,9 @@ AS_CUSTOM_PER_FILE = NumberDisplayWidget
399399
PLUGIN_FILES += $(filter-out dBiz/src/plugin.cpp,$(wildcard dBiz/src/*.cpp))
400400

401401
# modules/types which are present in other plugins
402-
DBIZ_CUSTOM = Chord DarkDefaultItem Divider OrangeLight VCA4 darkPanelID lightPanelID
402+
DBIZ_CUSTOM = Chord DarkDefaultItem Divider FourSeq FourSeqWidget OrangeLight VCA4 Wavefolder
403+
DBIZ_CUSTOM += darkPanelID lightPanelID
404+
DBIZ_CUSTOM_PER_FILE = MultiFilter Oscillator calcOutput process sineOsc subBank
403405

404406
# --------------------------------------------------------------
405407
# AudibleInstruments

plugins/plugins.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -321,21 +321,21 @@ extern Model* modelTestVCF;
321321
void setupSamples();
322322

323323
// dBiz
324-
#define darkPanelID dBizdarkPanelID
325324
#define DarkDefaultItem dBizDarkDefaultItem
326-
#define lightPanelID dBizlightPanelID
327325
#define OrangeLight dBizOrangeLight
326+
#define darkPanelID dBizdarkPanelID
327+
#define lightPanelID dBizlightPanelID
328328
#define modelChord modeldBizChord
329-
#define modelVCA4 modeldBizVCA4
330329
#define modelDivider modeldBizDivider
330+
#define modelVCA4 modeldBizVCA4
331331
#include "dBiz/src/plugin.hpp"
332-
#undef darkPanelID
333332
#undef DarkDefaultItem
334-
#undef lightPanelID
335333
#undef OrangeLight
334+
#undef darkPanelID
335+
#undef lightPanelID
336336
#undef modelChord
337-
#undef modelVCA4
338337
#undef modelDivider
338+
#undef modelVCA4
339339

340340
// ESeries
341341
#include "ESeries/src/plugin.hpp"
@@ -1737,8 +1737,8 @@ static void initStatic__dBiz()
17371737
if (spl.ok())
17381738
{
17391739
#define modelChord modeldBizChord
1740-
#define modelVCA4 modeldBizVCA4
17411740
#define modelDivider modeldBizDivider
1741+
#define modelVCA4 modeldBizVCA4
17421742
p->addModel(modelNavControl);
17431743
p->addModel(modelBench);
17441744
p->addModel(modelContorno);
@@ -1773,8 +1773,8 @@ static void initStatic__dBiz()
17731773
p->addModel(modelOrder);
17741774
p->addModel(modelDualMatrix);
17751775
#undef modelChord
1776-
#undef modelVCA4
17771776
#undef modelDivider
1777+
#undef modelVCA4
17781778
}
17791779
}
17801780

0 commit comments

Comments
 (0)