2008-09-18 03:15:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class CN64SystemSettings
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
CN64SystemSettings();
|
|
|
|
virtual ~CN64SystemSettings();
|
|
|
|
|
2010-10-29 03:20:25 +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 bProfiling ( void ) { return m_bProfiling; }
|
|
|
|
inline static bool bShowDListAListCount ( void ) { return m_bShowDListAListCount; }
|
|
|
|
inline static bool bLimitFPS ( void ) { return m_bLimitFPS; }
|
|
|
|
inline static bool bFixedAudio ( void ) { return m_bFixedAudio; }
|
|
|
|
inline static bool bSyncToAudio ( void ) { return m_bSyncToAudio; }
|
|
|
|
inline static bool b32BitCore ( void ) { return m_b32Bit; }
|
|
|
|
inline static bool bFastSP ( void ) { return m_bFastSP; }
|
2010-06-04 06:25:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static 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;
|
2010-07-23 10:45:35 +00:00
|
|
|
static bool m_bFastSP;
|
2010-10-23 18:53:01 +00:00
|
|
|
static bool m_b32Bit;
|
2010-06-04 06:25:07 +00:00
|
|
|
|
|
|
|
static int m_RefCount;
|
|
|
|
|
2008-09-18 03:15:49 +00:00
|
|
|
};
|