From c63c73a92a995943aecd15a5ac9889d12e15ba28 Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 29 Jan 2017 07:42:37 +1100 Subject: [PATCH] [Glide64] Remove Set_log_clear --- 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 c4f276bb7..9af79b4e3 100644 --- a/Source/Glide64/Settings.cpp +++ b/Source/Glide64/Settings.cpp @@ -53,7 +53,6 @@ ghq_hirs_dump(0), autodetect_ucode(0), ucode(0), elogging(0), -log_clear(0), filter_cache(0), unk_as_red(0), log_unk(0), @@ -130,7 +129,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_log_clear, "log_clear", 0); general_setting(Set_elogging, "elogging", 0); general_setting(Set_filter_cache, "filter_cache", 0); general_setting(Set_unk_as_red, "unk_as_red", 0); @@ -281,7 +279,6 @@ void CSettings::ReadSettings() this->ucode = GetSetting(Set_ucode); this->wireframe = GetSetting(Set_wireframe); this->wfmode = GetSetting(Set_wfmode); - this->log_clear = GetSetting(Set_log_clear); this->elogging = GetSetting(Set_elogging); this->filter_cache = GetSetting(Set_filter_cache); this->unk_as_red = GetSetting(Set_unk_as_red); @@ -292,7 +289,6 @@ void CSettings::ReadSettings() this->ucode = 2; this->wireframe = FALSE; this->wfmode = 0; - this->log_clear = FALSE; this->elogging = FALSE; this->filter_cache = FALSE; this->unk_as_red = FALSE; @@ -510,7 +506,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_log_clear, g_settings->log_clear); SetSetting(Set_elogging,g_settings->elogging); SetSetting(Set_filter_cache,g_settings->filter_cache); SetSetting(Set_unk_as_red,g_settings->unk_as_red); diff --git a/Source/Glide64/Settings.h b/Source/Glide64/Settings.h index 12acbaeba..533508030 100644 --- a/Source/Glide64/Settings.h +++ b/Source/Glide64/Settings.h @@ -97,7 +97,6 @@ public: int autodetect_ucode; int ucode; int elogging; - int log_clear; int filter_cache; int unk_as_red; int log_unk; diff --git a/Source/Glide64/SettingsID.h b/Source/Glide64/SettingsID.h index 45c6a2522..caeddc500 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_log_clear, Set_elogging, + Set_elogging, Set_wfmode, Set_filter_cache, 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,