From 077ce72050b41ebdc5c9569b4d07025ad0ae92fd Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 29 Jan 2017 06:40:37 +1100 Subject: [PATCH] [Glide64] Remove Set_hotkeys --- Source/Glide64/Settings.cpp | 3 --- Source/Glide64/Settings.h | 1 - Source/Glide64/SettingsID.h | 2 +- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/Glide64/Settings.cpp b/Source/Glide64/Settings.cpp index 7ef079951..31bc1fc0e 100644 --- a/Source/Glide64/Settings.cpp +++ b/Source/Glide64/Settings.cpp @@ -29,7 +29,6 @@ swapmode(0), lodmode(0), aspectmode(0), m_frame_buffer(0), -use_hotkeys(0), //Texture filtering options texture_dir(""), ghq_fltr(0), @@ -121,7 +120,6 @@ void CSettings::RegisterSettings(void) #endif general_setting(Set_vsync, "vsync", 1); general_setting(Set_texenh_options, "texenh_options", 0); - general_setting(Set_hotkeys, "hotkeys", 1); general_setting(Set_wrpVRAM, "wrpVRAM", 0); #ifndef ANDROID general_setting(Set_wrpFBO, "wrpFBO", 0); @@ -277,7 +275,6 @@ void CSettings::ReadSettings() this->rotate = GetSetting(Set_Rotate); this->advanced_options = Set_basic_mode ? !GetSystemSetting(Set_basic_mode) : 0; this->texenh_options = GetSetting(Set_texenh_options); - this->use_hotkeys = GetSetting(Set_hotkeys); this->wrpVRAM = GetSetting(Set_wrpVRAM); this->wrpFBO = GetSetting(Set_wrpFBO); diff --git a/Source/Glide64/Settings.h b/Source/Glide64/Settings.h index 35c167ff0..1ba75a3ac 100644 --- a/Source/Glide64/Settings.h +++ b/Source/Glide64/Settings.h @@ -43,7 +43,6 @@ public: int swapmode; int lodmode; int aspectmode; - int use_hotkeys; enum FBCRCMODE diff --git a/Source/Glide64/SettingsID.h b/Source/Glide64/SettingsID.h index 2e72235a8..693386709 100644 --- a/Source/Glide64/SettingsID.h +++ b/Source/Glide64/SettingsID.h @@ -13,7 +13,7 @@ enum { // General Settings - Set_vsync, Set_Rotate, Set_texenh_options, Set_hotkeys, Set_wrpVRAM, + 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_filter_cache, Set_unk_as_red, Set_log_unk, Set_unk_clear, Set_ghq_fltr,