From b3b02de5d6ecb7bc48f8e8e4b3a05bf626693e2d Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 29 Jan 2017 06:43:11 +1100 Subject: [PATCH] [Glide64] Remove Set_run_in_window --- 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 31bc1fc0e..17422200b 100644 --- a/Source/Glide64/Settings.cpp +++ b/Source/Glide64/Settings.cpp @@ -55,7 +55,6 @@ ucode(0), logging(0), elogging(0), log_clear(0), -run_in_window(0), filter_cache(0), unk_as_red(0), log_unk(0), @@ -134,7 +133,6 @@ void CSettings::RegisterSettings(void) general_setting(Set_wfmode, "wfmode", 1); general_setting(Set_logging, "logging", 0); general_setting(Set_log_clear, "log_clear", 0); - general_setting(Set_run_in_window, "run_in_window", 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); @@ -287,7 +285,6 @@ void CSettings::ReadSettings() this->wfmode = GetSetting(Set_wfmode); this->logging = GetSetting(Set_logging); this->log_clear = GetSetting(Set_log_clear); - this->run_in_window = GetSetting(Set_run_in_window); this->elogging = GetSetting(Set_elogging); this->filter_cache = GetSetting(Set_filter_cache); this->unk_as_red = GetSetting(Set_unk_as_red); @@ -300,7 +297,6 @@ void CSettings::ReadSettings() this->wfmode = 0; this->logging = FALSE; this->log_clear = FALSE; - this->run_in_window = FALSE; this->elogging = FALSE; this->filter_cache = FALSE; this->unk_as_red = FALSE; @@ -520,7 +516,6 @@ void CSettings::WriteSettings(void) SetSetting(Set_wfmode, g_settings->wfmode); SetSetting(Set_logging, g_settings->logging); SetSetting(Set_log_clear, g_settings->log_clear); - SetSetting(Set_run_in_window,g_settings->run_in_window); 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 1ba75a3ac..a1b8314d4 100644 --- a/Source/Glide64/Settings.h +++ b/Source/Glide64/Settings.h @@ -99,7 +99,6 @@ public: int logging; int elogging; int log_clear; - int run_in_window; int filter_cache; int unk_as_red; int log_unk; diff --git a/Source/Glide64/SettingsID.h b/Source/Glide64/SettingsID.h index 693386709..a611c9961 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_logging, Set_log_clear, Set_elogging, Set_run_in_window, + Set_wfmode, Set_logging, Set_log_clear, Set_elogging, 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,