diff --git a/src/CVMix.cpp b/src/CVMix.cpp index 99e27bd..9eb2625 100644 --- a/src/CVMix.cpp +++ b/src/CVMix.cpp @@ -26,8 +26,10 @@ struct CVMix : Module { for (int i = 0; i < 3; i++) configParam(LEVEL_PARAMS + i, -1.f, 1.f, 0.f, string::f("Level %d", i + 1), "%", 0, 100); - for (int i = 0; i < 3; i++) + for (int i = 0; i < 3; i++) { configInput(CV_INPUTS + i, string::f("CV %d", i + 1)); + getInputInfo(CV_INPUTS + i)->description = "Normalled to 10 V"; + } configOutput(MIX_OUTPUT, "Mix"); }