From aac83913329823203dbe58e2538433afe14b8809 Mon Sep 17 00:00:00 2001 From: abscisys Date: Tue, 20 Dec 2022 03:51:31 +0100 Subject: [PATCH] Revert "Fixing compiling issue on RPI1" This reverts commit 03a07747f096643265dd724964518acc7f682de9. --- src/performanceconfig.cpp | 5 +---- src/performanceconfig.h | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/performanceconfig.cpp b/src/performanceconfig.cpp index b7d967a..af36e8a 100644 --- a/src/performanceconfig.cpp +++ b/src/performanceconfig.cpp @@ -520,8 +520,7 @@ void CPerformanceConfig::SetReverbLevel (unsigned nValue) m_nReverbLevel = nValue; } -#ifdef ARM_ALLOW_MULTI_CORE -/* Unison START */ +// Unison bool CPerformanceConfig::GetUnisonEnable (void) const { return m_bUnisonEnable; @@ -551,8 +550,6 @@ void CPerformanceConfig::SetUnisonDetuneSpread (unsigned nValue) { m_nUnisonDetuneSpread = nValue; } -/* Unison END */ -#endif // Pitch bender and portamento: void CPerformanceConfig::SetPitchBendRange (unsigned nValue, unsigned nTG) diff --git a/src/performanceconfig.h b/src/performanceconfig.h index 76aa768..017c419 100644 --- a/src/performanceconfig.h +++ b/src/performanceconfig.h @@ -117,16 +117,13 @@ public: void SetReverbDiffusion (unsigned nValue); void SetReverbLevel (unsigned nValue); - #ifdef ARM_ALLOW_MULTI_CORE - /* Unison START */ + // Unison bool GetUnisonEnable (void) const; unsigned GetUnisonPanSpread (void) const; unsigned GetUnisonDetuneSpread (void) const; void SetUnisonEnable (bool bValue); void SetUnisonPanSpread (unsigned nValue); void SetUnisonDetuneSpread (unsigned nValue); - /* Unison END */ - #endif bool VoiceDataFilled(unsigned nTG); bool ListPerformances();