mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 19:12:47 +02:00
ControllerEmu: Add missing virtual destructor to BooleanSetting
This commit is contained in:
parent
4436011c50
commit
a9da2d9e20
@ -103,6 +103,8 @@ void ControllerEmu::ControlGroup::LoadConfig(IniFile::Section* sec, const std::s
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ControllerEmu::ControlGroup::BooleanSetting::~BooleanSetting() = default;
|
||||||
|
|
||||||
void ControllerEmu::LoadConfig(IniFile::Section* sec, const std::string& base)
|
void ControllerEmu::LoadConfig(IniFile::Section* sec, const std::string& base)
|
||||||
{
|
{
|
||||||
std::string defdev = default_device.ToString();
|
std::string defdev = default_device.ToString();
|
||||||
|
@ -107,6 +107,7 @@ public:
|
|||||||
: m_type(setting_type), m_name(setting_name), m_default_value(default_value)
|
: m_type(setting_type), m_name(setting_name), m_default_value(default_value)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
virtual ~BooleanSetting();
|
||||||
|
|
||||||
virtual bool GetValue() const { return m_value; }
|
virtual bool GetValue() const { return m_value; }
|
||||||
virtual void SetValue(bool value) { m_value = value; }
|
virtual void SetValue(bool value) { m_value = value; }
|
||||||
|
Loading…
Reference in New Issue
Block a user