From d02cf2712443392b8540e26786c9f8a019867435 Mon Sep 17 00:00:00 2001 From: probonopd Date: Fri, 9 Dec 2022 22:59:05 +0100 Subject: [PATCH] Fix compiler warning Closes https://github.com/probonopd/MiniDexed/issues/387 --- src/minidexed.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/minidexed.h b/src/minidexed.h index 0e6fcb4..b870af2 100644 --- a/src/minidexed.h +++ b/src/minidexed.h @@ -258,8 +258,6 @@ private: uint8_t m_nRawVoiceData[156]; - - bool m_bSavePerformanceNewFile; bool m_bSetNewPerformance; unsigned m_nSetNewPerformanceID; @@ -297,7 +295,10 @@ private: CSpinLock m_ReverbSpinLock; + // m_bSavePerformance needs to be declared after m_bSavePerformanceNewFile + bool m_bSavePerformanceNewFile; bool m_bSavePerformance; + bool m_bLoadPerformanceBusy; bool m_bSaveAsDeault; };