2008-09-18 03:15:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CN64SystemSettings
|
|
|
|
{
|
2008-11-14 20:51:06 +00:00
|
|
|
static void StaticRefreshSettings (CN64SystemSettings * _this)
|
|
|
|
{
|
|
|
|
_this->RefreshSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RefreshSettings ( void );
|
|
|
|
|
2008-12-04 10:41:51 +00:00
|
|
|
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;
|
|
|
|
static DWORD m_ViRefreshRate;
|
2008-09-18 03:15:49 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
CN64SystemSettings();
|
|
|
|
virtual ~CN64SystemSettings();
|
|
|
|
|
2008-12-04 10:41:51 +00:00
|
|
|
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; }
|
|
|
|
inline DWORD ViRefreshRate ( void ) const { return m_ViRefreshRate; }
|
2008-09-18 03:15:49 +00:00
|
|
|
};
|