Fix the step/smooth CC ranges

This commit is contained in:
Jean Pierre Cimalando 2020-06-20 15:56:14 +02:00
parent 0ccc57acce
commit 997ae597c3

View file

@ -82,8 +82,7 @@ namespace Default
// Region logic: MIDI conditions
constexpr Range<uint8_t> channelRange { 1, 16 };
constexpr Range<uint8_t> midiChannelRange { 0, 15 };
constexpr Range<uint8_t> stepCCRange { 0, 127 };
constexpr Range<uint8_t> smoothCCRange { 0, 127 };
constexpr Range<uint8_t> smoothCCRange { 0, 100 };
constexpr float smoothTauPerStep { 3e-3 };
constexpr Range<uint8_t> curveCCRange { 0, 255 };
constexpr Range<uint16_t> ccNumberRange { 0, config::numCCs };