Removed Undefined_F9 (Tick) as an invalid token (so it valid now)
This commit is contained in:
parent
9a644aca25
commit
240082c0fb
|
|
@ -796,7 +796,7 @@ bool MidiInterface<Transport, Settings, Platform>::parse()
|
|||
const byte extracted = mTransport.read();
|
||||
|
||||
// Ignore Undefined
|
||||
if (extracted == Undefined_F9 || extracted == Undefined_FD)
|
||||
if (extracted == Undefined_FD)
|
||||
return (Settings::Use1ByteParsing) ? false : parse();
|
||||
|
||||
if (mPendingMessageIndex == 0)
|
||||
|
|
@ -1217,7 +1217,6 @@ MidiType MidiInterface<Transport, Settings, Platform>::getTypeFromStatusByte(byt
|
|||
if ((inStatus < 0x80) ||
|
||||
(inStatus == Undefined_F4) ||
|
||||
(inStatus == Undefined_F5) ||
|
||||
(inStatus == Undefined_F9) ||
|
||||
(inStatus == Undefined_FD))
|
||||
return InvalidType; // Data bytes and undefined.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue