From 37ec291a6de39f46fe2d195034d06d8969be7ad5 Mon Sep 17 00:00:00 2001 From: probonopd Date: Wed, 20 Apr 2022 19:53:21 +0200 Subject: [PATCH] Move m_uchOPMask[] to the private section of the class https://github.com/probonopd/MiniDexed/issues/111#issuecomment-1104236141 Thanks @rsta2 --- src/minidexed.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/minidexed.h b/src/minidexed.h index c941ea9..d1f228a 100644 --- a/src/minidexed.h +++ b/src/minidexed.h @@ -81,7 +81,6 @@ public: void ControllersRefresh (unsigned nTG); void SetReverbSend (unsigned nReverbSend, unsigned nTG); // 0 .. 127 - uint8_t m_uchOPMask[CConfig::ToneGenerators]; enum TParameter { @@ -127,7 +126,8 @@ public: private: int16_t ApplyNoteLimits (int16_t pitch, unsigned nTG); // returns < 0 to ignore note - + uint8_t m_uchOPMask[CConfig::ToneGenerators]; + void ProcessSound (void); #ifdef ARM_ALLOW_MULTI_CORE