From b9aca3b5bdb621785f775bd65f20994db5189bec Mon Sep 17 00:00:00 2001 From: Don Cross Date: Wed, 11 Dec 2024 10:42:10 -0500 Subject: [PATCH] Chaops: minor fixes Added missing caption text for the Morph CV input port. Probably doesn't matter for a gate input, but re-initialize the FREEZE gate receiver object. --- src/chaops_vcv.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/chaops_vcv.cpp b/src/chaops_vcv.cpp index 4e6905a..7e3e5a7 100644 --- a/src/chaops_vcv.cpp +++ b/src/chaops_vcv.cpp @@ -72,6 +72,7 @@ namespace Sapphire configInput(FREEZE_INPUT, "Freeze gate"); configParam(MORPH_PARAM, 0, 1, 0, "Morph position/velocity"); configParam(MORPH_ATTEN, -1, +1, 0, "Morph attenuverter", "%", 0, 100); + configInput(MORPH_CV_INPUT, "Morph CV"); initialize(); } @@ -83,6 +84,7 @@ namespace Sapphire recallFlashCounter = 0; storeReceiver.initialize(); recallReceiver.initialize(); + freezeReceiver.initialize(); } void onReset(const ResetEvent& e) override @@ -194,7 +196,6 @@ namespace Sapphire ChaopsModule* chaopsModule; const NVGcolor RECALL_BUTTON_COLOR = nvgRGB(0x40, 0xd0, 0x3e); - explicit ChaopsWidget(ChaopsModule* module) : SapphireWidget("chaops", asset::plugin(pluginInstance, "res/chaops.svg")) , chaopsModule(module)