From b30953b57879f2ce79c4a88fb74553b35dcc289a Mon Sep 17 00:00:00 2001 From: Rene Stange Date: Sun, 27 Feb 2022 13:36:59 +0100 Subject: [PATCH] Fix order of members in minidexed.h (#31) --- src/minidexed.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/minidexed.h b/src/minidexed.h index 7c87802..526501d 100644 --- a/src/minidexed.h +++ b/src/minidexed.h @@ -57,8 +57,6 @@ class CMiniDexed : public Dexed void Process(boolean bPlugAndPlayUpdated); private: void LCDWrite (const char *pString); - private: - CHD44780Device m_LCD; protected: static void MIDIPacketHandler (unsigned nCable, u8 *pPacket, unsigned nLength); static void KeyStatusHandlerRaw (unsigned char ucModifiers, const unsigned char RawKeys[6]); @@ -70,6 +68,8 @@ class CMiniDexed : public Dexed unsigned m_nSerialState; u8 m_SerialMessage[3]; CSysExFileLoader m_SysExFileLoader; + private: + CHD44780Device m_LCD; static CMiniDexed *s_pThis; };