Skip to content

Commit

Permalink
Chaops: minor fixes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cosinekitty committed Dec 11, 2024
1 parent fcfdfab commit b9aca3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/chaops_vcv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand All @@ -83,6 +84,7 @@ namespace Sapphire
recallFlashCounter = 0;
storeReceiver.initialize();
recallReceiver.initialize();
freezeReceiver.initialize();
}

void onReset(const ResetEvent& e) override
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit b9aca3b

Please sign in to comment.