Fix for using wrong configuration var for chorus_depth when loading from

EEPROM.
pull/9/head^2
Holger Wirtz 5 years ago
parent b49f7088f3
commit 0cb4aca84d
  1. 2
      MicroDexed.ino

@ -356,7 +356,7 @@ void setup()
modulator.begin(WAVEFORM_TRIANGLE);
}
modulator.phase(0);
modulator.amplitude(mapfloat(configuration.chorus_level, CHORUS_LEVEL_MIN, CHORUS_LEVEL_MAX, 0.0, 1.0));
modulator.amplitude(mapfloat(configuration.chorus_depth, CHORUS_DEPTH_MIN, CHORUS_DEPTH_MAX, 0.0, 1.0));
modulator.offset(0.0);
#if MOD_FILTER_OUTPUT == MOD_BUTTERWORTH_FILTER_OUTPUT
// Butterworth filter, 12 db/octave

Loading…
Cancel
Save