BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit 0e438e8286feebe489277d9e083147a4ec9fcb0e
parent fbeb62710aadcc8dd6bb443d9edd51bbbf4db5a9
Author: Matt Demanett <matt@demanett.net>
Date:   Sun, 13 Sep 2020 23:56:29 -0400

VISH, MEGAGATE: gate-to-trigger enabled by default.

Diffstat:
Msrc/MegaGate.hpp | 2+-
Msrc/Vish.hpp | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/MegaGate.hpp b/src/MegaGate.hpp @@ -108,7 +108,7 @@ struct MegaGate : LPGEnvBaseModule { configParam(FALL_SHAPE_PARAM, -1.0f, 1.0f, 0.0f, "Fall shape"); configParam<TimeParamQuantity<1>>(MINIMUM_GATE_PARAM, 0.0f, 1.0f, 0.3162278f, "Minimum gate", " s"); configParam(TILT_PARAM, -1.0f, 1.0f, 0.0f, "Tilt", "%", 0.0f, 100.0f); - configParam(GATE_TO_TRIGGER_PARAM, 0.0f, 1.0f, 0.0f, "Gate to trigger mode"); + configParam(GATE_TO_TRIGGER_PARAM, 0.0f, 1.0f, 1.0f, "Gate to trigger mode"); configParam(TIMES_10X_PARAM, 0.0f, 1.0f, 0.0f, "Timings 10X mode"); configParam(FILTERS_SERIAL_PARAM, 0.0f, 1.0f, 0.0f, "Filters in series mode"); configParam(LINEAR_VCA_PARAM, 0.0f, 1.0f, 0.0f, "Linear VCA mode"); diff --git a/src/Vish.hpp b/src/Vish.hpp @@ -58,7 +58,7 @@ struct Vish : LPGEnvBaseModule { configParam<TimeParamQuantity<1>>(FALL_PARAM, 0.0f, 1.0f, 0.5477226f, "Fall time", " s"); configParam(FALL_SHAPE_PARAM, -1.0f, 1.0f, 0.0f, "Fall shape"); configParam<TimeParamQuantity<1>>(MINIMUM_GATE_PARAM, 0.0f, 1.0f, 0.3162278f, "Minimum gate", " s"); - configParam(GATE_TO_TRIGGER_PARAM, 0.0f, 1.0f, 0.0f, "Gate to trigger mode"); + configParam(GATE_TO_TRIGGER_PARAM, 0.0f, 1.0f, 1.0f, "Gate to trigger mode"); configParam(TIMES_10X_PARAM, 0.0f, 1.0f, 0.0f, "Timings 10X mode"); }