diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-03-19 22:31:30 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-19 22:31:30 -0700 |
| commit | b35bbdfb58b80f5799ab5d43fcab4b72da7594b2 (patch) | |
| tree | 6b2ee0277409261f069276f666684c709c9060ee /Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h | |
| parent | 8eb26d298e383a56e8a0f2be580ed2c5f69eacbf (diff) | |
| parent | 1b0701e988bcdfe0f822638bb5c22bbd3739fd06 (diff) | |
Merge pull request #4856 from ligfx/backgroundinput
Move "Background Input" out of individual controller configurations
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h b/Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h index 754d697d2b..98c1614a6a 100644 --- a/Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h +++ b/Source/Core/InputCommon/ControllerEmu/Setting/BooleanSetting.h @@ -18,10 +18,9 @@ public: const bool default_value, const SettingType setting_type = SettingType::NORMAL); BooleanSetting(const std::string& setting_name, const bool default_value, const SettingType setting_type = SettingType::NORMAL); - virtual ~BooleanSetting(); - virtual bool GetValue() const; - virtual void SetValue(bool value); + bool GetValue() const; + void SetValue(bool value); const SettingType m_type; const std::string m_name; const std::string m_ui_name; |
