Reorder private variables to prevent compilation warnings (#390)

Co-authored-by: diyelectromusic <68612569+diyelectromusic@users.noreply.github.com>
pull/420/head
probonopd 1 year ago committed by GitHub
parent 4a8241226d
commit a3f7b42c9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/minidexed.h

@ -259,15 +259,8 @@ private:
uint8_t m_nRawVoiceData[156];
bool m_bSavePerformanceNewFile;
bool m_bSetNewPerformance;
unsigned m_nSetNewPerformanceID;
float32_t nMasterVolume;
bool m_bDeletePerformance;
unsigned m_nDeletePerformanceID;
CUserInterface m_UI;
CSysExFileLoader m_SysExFileLoader;
CPerformanceConfig m_PerformanceConfig;
@ -298,6 +291,11 @@ private:
CSpinLock m_ReverbSpinLock;
bool m_bSavePerformance;
bool m_bSavePerformanceNewFile;
bool m_bSetNewPerformance;
unsigned m_nSetNewPerformanceID;
bool m_bDeletePerformance;
unsigned m_nDeletePerformanceID;
bool m_bLoadPerformanceBusy;
bool m_bSaveAsDeault;
};

Loading…
Cancel
Save