From 5741df4d3b5d9ea2635119b774819747084721e2 Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 29 Jan 2017 07:47:27 +1100 Subject: [PATCH] [Glide64] Remove Set_filter_cache --- Source/Glide64/Settings.cpp | 5 ----- Source/Glide64/Settings.h | 1 - Source/Glide64/SettingsID.h | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Source/Glide64/Settings.cpp b/Source/Glide64/Settings.cpp index 218c7285f..2613ab59b 100644 --- a/Source/Glide64/Settings.cpp +++ b/Source/Glide64/Settings.cpp @@ -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); diff --git a/Source/Glide64/Settings.h b/Source/Glide64/Settings.h index d3729f244..77479233d 100644 --- a/Source/Glide64/Settings.h +++ b/Source/Glide64/Settings.h @@ -96,7 +96,6 @@ public: //Debug int autodetect_ucode; int ucode; - int filter_cache; int unk_as_red; int log_unk; int unk_clear; diff --git a/Source/Glide64/SettingsID.h b/Source/Glide64/SettingsID.h index e8e45f790..3792e6036 100644 --- a/Source/Glide64/SettingsID.h +++ b/Source/Glide64/SettingsID.h @@ -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,