summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-23 05:08:19 -0500
committerLioncash <mathew1800@gmail.com>2017-01-23 05:08:19 -0500
commita9da2d9e20ce1655a860ac8d1fd548dce437efa6 (patch)
tree5457beace53ff591040dd1470634f483c2685a68 /Source/Core/InputCommon/ControllerEmu.cpp
parent4436011c5070b41a5e1b4dc03bd230d4581e43c7 (diff)
ControllerEmu: Add missing virtual destructor to BooleanSetting
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu.cpp b/Source/Core/InputCommon/ControllerEmu.cpp
index 4ea4b59637..678ae02259 100644
--- a/Source/Core/InputCommon/ControllerEmu.cpp
+++ b/Source/Core/InputCommon/ControllerEmu.cpp
@@ -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)
{
std::string defdev = default_device.ToString();