From f0d3c860bf5ee8c422cc87f9ebb19daf57ddccc4 Mon Sep 17 00:00:00 2001 From: arsamus Date: Sun, 5 Jun 2022 17:29:39 -0300 Subject: [PATCH] Update performanceconfig.h --- src/performanceconfig.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/performanceconfig.h b/src/performanceconfig.h index 6247fef..7520cf7 100644 --- a/src/performanceconfig.h +++ b/src/performanceconfig.h @@ -57,6 +57,7 @@ public: unsigned GetPortamentoMode (unsigned nTG) const; // 0 .. 1 unsigned GetPortamentoGlissando (unsigned nTG) const; // 0 .. 1 unsigned GetPortamentoTime (unsigned nTG) const; // 0 .. 99 + bool GetMonoMode (unsigned nTG) const; // 0 .. 1 void SetBankNumber (unsigned nValue, unsigned nTG); void SetVoiceNumber (unsigned nValue, unsigned nTG); @@ -77,6 +78,7 @@ public: void SetPortamentoTime (unsigned nValue, unsigned nTG); void SetVoiceDataToTxt (const uint8_t *pData, unsigned nTG); uint8_t *GetVoiceDataFromTxt (unsigned nTG); + void SetMonoMode (bool bOKValue, unsigned nTG); // Effects bool GetCompressorEnable (void) const; @@ -133,6 +135,7 @@ private: unsigned m_nPortamentoGlissando[CConfig::ToneGenerators]; unsigned m_nPortamentoTime[CConfig::ToneGenerators]; std::string m_nVoiceDataTxt[CConfig::ToneGenerators]; + bool m_bMonoMode[CConfig::ToneGenerators]; unsigned nLastPerformance; unsigned nLastFileIndex;