Skip to content

Commit

Permalink
Reorder private variables to prevent compilation warnings (#390)
Browse files Browse the repository at this point in the history
Co-authored-by: diyelectromusic <68612569+diyelectromusic@users.noreply.github.com>
  • Loading branch information
probonopd and diyelectromusic authored Dec 11, 2022
1 parent 4a82412 commit a3f7b42
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/minidexed.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,15 +259,8 @@ class CMiniDexed
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;
Expand Down Expand Up @@ -298,6 +291,11 @@ class CMiniDexed
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;
};
Expand Down

0 comments on commit a3f7b42

Please sign in to comment.