Fix the step/smooth CC ranges
This commit is contained in:
parent
0ccc57acce
commit
997ae597c3
1 changed files with 1 additions and 2 deletions
|
|
@ -82,8 +82,7 @@ namespace Default
|
||||||
// Region logic: MIDI conditions
|
// Region logic: MIDI conditions
|
||||||
constexpr Range<uint8_t> channelRange { 1, 16 };
|
constexpr Range<uint8_t> channelRange { 1, 16 };
|
||||||
constexpr Range<uint8_t> midiChannelRange { 0, 15 };
|
constexpr Range<uint8_t> midiChannelRange { 0, 15 };
|
||||||
constexpr Range<uint8_t> stepCCRange { 0, 127 };
|
constexpr Range<uint8_t> smoothCCRange { 0, 100 };
|
||||||
constexpr Range<uint8_t> smoothCCRange { 0, 127 };
|
|
||||||
constexpr float smoothTauPerStep { 3e-3 };
|
constexpr float smoothTauPerStep { 3e-3 };
|
||||||
constexpr Range<uint8_t> curveCCRange { 0, 255 };
|
constexpr Range<uint8_t> curveCCRange { 0, 255 };
|
||||||
constexpr Range<uint16_t> ccNumberRange { 0, config::numCCs };
|
constexpr Range<uint16_t> ccNumberRange { 0, config::numCCs };
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue