2016-01-27 09:11:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Project64-core/N64System/N64Types.h>
|
|
|
|
|
|
|
|
class CRecompilerSettings
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CRecompilerSettings();
|
|
|
|
virtual ~CRecompilerSettings();
|
|
|
|
|
2022-10-10 00:22:17 +00:00
|
|
|
static inline bool bShowRecompMemSize(void)
|
|
|
|
{
|
|
|
|
return m_bShowRecompMemSize;
|
|
|
|
}
|
2016-01-27 09:11:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void StaticRefreshSettings(CRecompilerSettings * _this)
|
|
|
|
{
|
|
|
|
_this->RefreshSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RefreshSettings(void);
|
|
|
|
|
2021-05-18 11:51:36 +00:00
|
|
|
// Settings that can be changed on the fly
|
2016-01-27 09:11:59 +00:00
|
|
|
static bool m_bShowRecompMemSize;
|
|
|
|
|
|
|
|
static int32_t m_RefCount;
|
|
|
|
};
|