[Glide64] Remove Set_filter_cache
This commit is contained in:
parent
866384bf16
commit
5741df4d3b
|
@ -52,7 +52,6 @@ ghq_hirs_let_texartists_fly(0),
|
|||
ghq_hirs_dump(0),
|
||||
autodetect_ucode(0),
|
||||
ucode(0),
|
||||
filter_cache(0),
|
||||
unk_as_red(0),
|
||||
log_unk(0),
|
||||
unk_clear(0),
|
||||
|
@ -128,7 +127,6 @@ void CSettings::RegisterSettings(void)
|
|||
general_setting(Set_ucode, "ucode", 2);
|
||||
general_setting(Set_wireframe, "wireframe", 0);
|
||||
general_setting(Set_wfmode, "wfmode", 1);
|
||||
general_setting(Set_filter_cache, "filter_cache", 0);
|
||||
general_setting(Set_unk_as_red, "unk_as_red", 0);
|
||||
general_setting(Set_log_unk, "log_unk", 0);
|
||||
general_setting(Set_unk_clear, "unk_clear", 0);
|
||||
|
@ -277,7 +275,6 @@ void CSettings::ReadSettings()
|
|||
this->ucode = GetSetting(Set_ucode);
|
||||
this->wireframe = GetSetting(Set_wireframe);
|
||||
this->wfmode = GetSetting(Set_wfmode);
|
||||
this->filter_cache = GetSetting(Set_filter_cache);
|
||||
this->unk_as_red = GetSetting(Set_unk_as_red);
|
||||
this->log_unk = GetSetting(Set_log_unk);
|
||||
this->unk_clear = GetSetting(Set_unk_clear);
|
||||
|
@ -286,7 +283,6 @@ void CSettings::ReadSettings()
|
|||
this->ucode = 2;
|
||||
this->wireframe = FALSE;
|
||||
this->wfmode = 0;
|
||||
this->filter_cache = FALSE;
|
||||
this->unk_as_red = FALSE;
|
||||
this->log_unk = FALSE;
|
||||
this->unk_clear = FALSE;
|
||||
|
@ -502,7 +498,6 @@ void CSettings::WriteSettings(void)
|
|||
SetSetting(Set_ucode, (int)g_settings->ucode);
|
||||
SetSetting(Set_wireframe, g_settings->wireframe);
|
||||
SetSetting(Set_wfmode, g_settings->wfmode);
|
||||
SetSetting(Set_filter_cache,g_settings->filter_cache);
|
||||
SetSetting(Set_unk_as_red,g_settings->unk_as_red);
|
||||
SetSetting(Set_log_unk,g_settings->log_unk);
|
||||
SetSetting(Set_unk_clear, g_settings->unk_clear);
|
||||
|
|
|
@ -96,7 +96,6 @@ public:
|
|||
//Debug
|
||||
int autodetect_ucode;
|
||||
int ucode;
|
||||
int filter_cache;
|
||||
int unk_as_red;
|
||||
int log_unk;
|
||||
int unk_clear;
|
||||
|
|
|
@ -15,7 +15,7 @@ enum
|
|||
// General Settings
|
||||
Set_vsync, Set_Rotate, Set_texenh_options, Set_wrpVRAM,
|
||||
Set_wrpFBO, Set_wrpAnisotropic, Set_autodetect_ucode, Set_ucode, Set_wireframe,
|
||||
Set_wfmode, Set_filter_cache, Set_unk_as_red, Set_log_unk, Set_unk_clear, Set_ghq_fltr,
|
||||
Set_wfmode, Set_unk_as_red, Set_log_unk, Set_unk_clear, Set_ghq_fltr,
|
||||
Set_ghq_cmpr, Set_ghq_enht, Set_ghq_hirs, Set_ghq_enht_cmpr, Set_ghq_enht_tile,
|
||||
Set_ghq_enht_f16bpp, Set_ghq_enht_gz, Set_ghq_enht_nobg, Set_ghq_hirs_cmpr,
|
||||
Set_ghq_hirs_tile, Set_ghq_hirs_f16bpp, Set_ghq_hirs_gz, Set_ghq_hirs_altcrc,
|
||||
|
|
Loading…
Reference in New Issue