[Glide64] Remove Set_hotkeys

This commit is contained in:
zilmar 2017-01-29 06:40:37 +11:00
parent 0a5c2bfc72
commit 077ce72050
3 changed files with 1 additions and 5 deletions

View File

@ -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);

View File

@ -43,7 +43,6 @@ public:
int swapmode;
int lodmode;
int aspectmode;
int use_hotkeys;
enum FBCRCMODE

View File

@ -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,