2016-01-27 09:11:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CN64SystemSettings
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
CN64SystemSettings();
|
|
|
|
virtual ~CN64SystemSettings();
|
|
|
|
|
2016-10-04 19:58:11 +00:00
|
|
|
inline static bool bBasicMode(void) { return m_bBasicMode; }
|
|
|
|
inline static bool bDisplayFrameRate(void) { return m_bDisplayFrameRate; }
|
|
|
|
inline static bool bShowCPUPer(void) { return m_bShowCPUPer; }
|
|
|
|
inline static bool bShowDListAListCount(void) { return m_bShowDListAListCount; }
|
|
|
|
inline static bool bLimitFPS(void) { return m_bLimitFPS; }
|
2021-06-15 05:00:38 +00:00
|
|
|
inline static bool UpdateControllerOnRefresh(void) { return m_UpdateControllerOnRefresh; }
|
2016-01-27 09:11:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void RefreshSettings(void *);
|
|
|
|
|
2016-10-04 19:58:11 +00:00
|
|
|
static bool m_bShowCPUPer;
|
|
|
|
static bool m_bBasicMode;
|
|
|
|
static bool m_bLimitFPS;
|
|
|
|
static bool m_bShowDListAListCount;
|
|
|
|
static bool m_bDisplayFrameRate;
|
2021-06-15 05:00:38 +00:00
|
|
|
static bool m_UpdateControllerOnRefresh;
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2021-06-15 05:00:38 +00:00
|
|
|
static int32_t m_RefCount;
|
2016-01-27 09:11:59 +00:00
|
|
|
};
|