Update performanceconfig.h

pull/228/head
arsamus 3 years ago committed by GitHub
parent aa6b15ecef
commit 1f61adc404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/performanceconfig.h

@ -26,6 +26,7 @@
#include "config.h"
#include <fatfs/ff.h>
#include <Properties/propertiesfatfsfile.h>
#define NUM_VOICE_PARAM 156
class CPerformanceConfig // Performance configuration
{
@ -73,7 +74,9 @@ public:
void SetPortamentoMode (unsigned nValue, unsigned nTG);
void SetPortamentoGlissando (unsigned nValue, unsigned nTG);
void SetPortamentoTime (unsigned nValue, unsigned nTG);
void SetVoiceDataToTxt (const uint8_t *pData, unsigned nTG);
uint8_t *GetVoiceDataFromTxt (unsigned nTG);
// Effects
bool GetCompressorEnable (void) const;
bool GetReverbEnable (void) const;
@ -113,7 +116,8 @@ private:
unsigned m_nPortamentoMode[CConfig::ToneGenerators];
unsigned m_nPortamentoGlissando[CConfig::ToneGenerators];
unsigned m_nPortamentoTime[CConfig::ToneGenerators];
std::string m_nVoiceDataTxt[CConfig::ToneGenerators];
bool m_bCompressorEnable;
bool m_bReverbEnable;
unsigned m_nReverbSize;

Loading…
Cancel
Save