Updated MIDI CC handling not to count from 1 (#6774)

This commit is contained in:
Artur-Twardowski-Mobica
2023-09-22 21:07:25 +02:00
committed by GitHub
parent 0576f9daa6
commit f0aa2862d7
6 changed files with 36 additions and 13 deletions

View File

@@ -127,6 +127,7 @@ private:
void upgrade_mixerRename();
void upgrade_bbTcoRename();
void upgrade_sampleAndHold();
void upgrade_midiCCIndexing();
// List of all upgrade methods
static const std::vector<UpgradeMethod> UPGRADE_METHODS;

View File

@@ -48,6 +48,7 @@ class MidiController : public Controller, public MidiEventProcessor
{
Q_OBJECT
public:
static constexpr int NONE = -1;
MidiController( Model * _parent );
~MidiController() override = default;