use fully qualified function names as requested

This commit is contained in:
Element 2021-11-03 09:48:49 -04:00
parent 299cd97cd1
commit 8c39aea6c6
2 changed files with 3 additions and 3 deletions

View File

@ -124,7 +124,7 @@ MidiInterface<Transport, Settings, Platform>& MidiInterface<Transport, Settings,
if (mTransport.beginTransmission(inMessage.type)) if (mTransport.beginTransmission(inMessage.type))
{ {
if (inMessage.isSysRT()) if (inMessage.isSystemRealTime())
{ {
mTransport.write(inMessage.type); mTransport.write(inMessage.type);
} else if (inMessage.isChannelMessage()) } else if (inMessage.isChannelMessage())

View File

@ -114,11 +114,11 @@ struct Message
const unsigned size = unsigned(data2) << 8 | data1; const unsigned size = unsigned(data2) << 8 | data1;
return size > sSysExMaxSize ? sSysExMaxSize : size; return size > sSysExMaxSize ? sSysExMaxSize : size;
} }
inline bool isSysRT () const inline bool isSystemRealTime () const
{ {
return (type & 0xf8) == 0xf8; return (type & 0xf8) == 0xf8;
} }
inline bool isSysCommon () const inline bool isSystemCommon () const
{ {
return (type & 0xf8) == 0xf0; return (type & 0xf8) == 0xf0;
} }