35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
#pragma once
|
|
|
|
class CN64SystemSettings
|
|
{
|
|
static void StaticRefreshSettings (CN64SystemSettings * _this)
|
|
{
|
|
_this->RefreshSettings();
|
|
}
|
|
|
|
void RefreshSettings ( void );
|
|
|
|
static bool m_bShowCPUPer;
|
|
static bool m_bProfiling;
|
|
static bool m_bBasicMode;
|
|
static bool m_bLimitFPS;
|
|
static bool m_bShowDListAListCount;
|
|
static bool m_bFixedAudio;
|
|
static bool m_bSyncToAudio;
|
|
static bool m_bDisplayFrameRate;
|
|
static bool m_SPHack;
|
|
|
|
protected:
|
|
CN64SystemSettings();
|
|
virtual ~CN64SystemSettings();
|
|
|
|
inline bool bBasicMode ( void ) const { return m_bBasicMode; }
|
|
inline bool bDisplayFrameRate ( void ) const { return m_bDisplayFrameRate; }
|
|
inline bool bShowCPUPer ( void ) const { return m_bShowCPUPer; }
|
|
inline bool bProfiling ( void ) const { return m_bProfiling; }
|
|
inline bool bShowDListAListCount ( void ) const { return m_bShowDListAListCount; }
|
|
inline bool bLimitFPS ( void ) const { return m_bLimitFPS; }
|
|
inline bool bFixedAudio ( void ) const { return m_bFixedAudio; }
|
|
inline bool bSyncToAudio ( void ) const { return m_bSyncToAudio; }
|
|
inline bool bSPHack ( void ) const { return m_SPHack; }
|
|
}; |