diff --git a/plugins/Makefile b/plugins/Makefile index 68c1558..aece19b 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -1346,11 +1346,12 @@ PLUGIN_FILES += $(filter-out ZetaCarinaeModules/src/plugin.cpp,$(wildcard ZetaCa # ZZC PLUGIN_FILES += $(filter-out ZZC/src/ZZC.cpp ZZC/src/WavetablePlayer.cpp,$(wildcard ZZC/src/*.cpp)) +PLUGIN_FILES += $(wildcard ZZC/src/Phaseque/*.cpp) # PLUGIN_FILES += ZZC/src/dsp/Wavetable.cpp # PLUGIN_FILES += ZZC/src/filetypes/WavSupport.cpp # modules/types which are present in other plugins -ZZC_CUSTOM = Clock LowFrequencyOscillator +ZZC_CUSTOM = Clock LowFrequencyOscillator LedLight # -------------------------------------------------------------- # Build setup diff --git a/plugins/ZZC b/plugins/ZZC index f590088..5a9d374 160000 --- a/plugins/ZZC +++ b/plugins/ZZC @@ -1 +1 @@ -Subproject commit f5900888025fcfad7842770e83365ba743bb51bd +Subproject commit 5a9d37487026133e54b1af3004851fb8362a3d52 diff --git a/plugins/plugins.cpp b/plugins/plugins.cpp index 80759e2..b9c5667 100644 --- a/plugins/plugins.cpp +++ b/plugins/plugins.cpp @@ -921,8 +921,10 @@ void setupSamples(); #define ZZC_SHARED_H #define ZZC_WIDGETS_H #define modelClock modelZZCClock +#define LedLight ZZCLedLight #include "ZZC/src/ZZC.hpp" #undef modelClock +#undef LedLight // known terminal modules std::vector hostTerminalModels; @@ -3683,6 +3685,7 @@ static void initStatic__ZZC() p->addModel(modelDiv); p->addModel(modelDivExp); p->addModel(modelPolygate); + p->addModel(modelPhaseque); #undef modelClock } }