diff --git a/CHANGELOG.md b/CHANGELOG.md index 5452e87..59e9c4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 1.0.3 (in development) +- Macro Oscillator: Change range of coarse pitch parameter and default value to match hardware. + ### 1.0.2 (2020-02-29) - Add ModularGrid URLs to manifest. diff --git a/src/Braids.cpp b/src/Braids.cpp index ea9de0c..4f59e8a 100644 --- a/src/Braids.cpp +++ b/src/Braids.cpp @@ -42,7 +42,7 @@ struct Braids : Module { config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS); configParam(SHAPE_PARAM, 0.0, 1.0, 0.0, "Model"); configParam(FINE_PARAM, -1.0, 1.0, 0.0, "Fine frequency adjustment"); - configParam(COARSE_PARAM, -2.0, 2.0, 0.0, "Coarse frequency adjustment"); + configParam(COARSE_PARAM, -5.0, 3.0, -1.0, "Coarse frequency adjustment"); configParam(FM_PARAM, -1.0, 1.0, 0.0, "FM"); configParam(TIMBRE_PARAM, 0.0, 1.0, 0.5, "Timbre"); configParam(MODULATION_PARAM, -1.0, 1.0, 0.0, "Modulation");