From 8c39aea6c6b786a29b797ad47f596fae0099519d Mon Sep 17 00:00:00 2001 From: Element Date: Wed, 3 Nov 2021 09:48:49 -0400 Subject: [PATCH] use fully qualified function names as requested --- src/MIDI.hpp | 2 +- src/midi_Message.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MIDI.hpp b/src/MIDI.hpp index d03eab1..be7c28a 100644 --- a/src/MIDI.hpp +++ b/src/MIDI.hpp @@ -124,7 +124,7 @@ MidiInterface& MidiInterface sSysExMaxSize ? sSysExMaxSize : size; } - inline bool isSysRT () const + inline bool isSystemRealTime () const { return (type & 0xf8) == 0xf8; } - inline bool isSysCommon () const + inline bool isSystemCommon () const { return (type & 0xf8) == 0xf0; }