mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
ControllerEmu: Add missing virtual destructor to BooleanSetting
This commit is contained in:
@ -107,6 +107,7 @@ public:
|
||||
: m_type(setting_type), m_name(setting_name), m_default_value(default_value)
|
||||
{
|
||||
}
|
||||
virtual ~BooleanSetting();
|
||||
|
||||
virtual bool GetValue() const { return m_value; }
|
||||
virtual void SetValue(bool value) { m_value = value; }
|
||||
|
Reference in New Issue
Block a user