Merge 894409953b into 2d64cc3c2f
This commit is contained in:
commit
b990328454
|
|
@ -1095,6 +1095,8 @@ bool MidiInterface<Transport, Settings, Platform>::parse()
|
|||
mMessage.valid = true;
|
||||
|
||||
// Activate running status (if enabled for the received type)
|
||||
if (Settings::UseRunningStatus) {
|
||||
|
||||
switch (mMessage.type)
|
||||
{
|
||||
case NoteOff:
|
||||
|
|
@ -1113,6 +1115,13 @@ bool MidiInterface<Transport, Settings, Platform>::parse()
|
|||
mRunningStatus_RX = InvalidType;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
else {
|
||||
|
||||
mRunningStatus_RX = InvalidType;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue