Merge 894409953b into 2d64cc3c2f
This commit is contained in:
commit
b990328454
39
src/MIDI.hpp
39
src/MIDI.hpp
|
|
@ -1095,24 +1095,33 @@ bool MidiInterface<Transport, Settings, Platform>::parse()
|
||||||
mMessage.valid = true;
|
mMessage.valid = true;
|
||||||
|
|
||||||
// Activate running status (if enabled for the received type)
|
// Activate running status (if enabled for the received type)
|
||||||
switch (mMessage.type)
|
if (Settings::UseRunningStatus) {
|
||||||
{
|
|
||||||
case NoteOff:
|
|
||||||
case NoteOn:
|
|
||||||
case AfterTouchPoly:
|
|
||||||
case ControlChange:
|
|
||||||
case ProgramChange:
|
|
||||||
case AfterTouchChannel:
|
|
||||||
case PitchBend:
|
|
||||||
// Running status enabled: store it from received message
|
|
||||||
mRunningStatus_RX = mPendingMessage[0];
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
switch (mMessage.type)
|
||||||
|
{
|
||||||
|
case NoteOff:
|
||||||
|
case NoteOn:
|
||||||
|
case AfterTouchPoly:
|
||||||
|
case ControlChange:
|
||||||
|
case ProgramChange:
|
||||||
|
case AfterTouchChannel:
|
||||||
|
case PitchBend:
|
||||||
|
// Running status enabled: store it from received message
|
||||||
|
mRunningStatus_RX = mPendingMessage[0];
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
// No running status
|
// No running status
|
||||||
mRunningStatus_RX = InvalidType;
|
mRunningStatus_RX = InvalidType;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else {
|
||||||
|
|
||||||
|
mRunningStatus_RX = InvalidType;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue