Make ControllerEmu::BooleanSetting non-virtual

This commit is contained in:
Michael Maltese
2017-02-07 18:28:53 -08:00
parent c4ba046aa3
commit 1b0701e988
2 changed files with 2 additions and 5 deletions

View File

@ -19,8 +19,6 @@ BooleanSetting::BooleanSetting(const std::string& setting_name, const bool defau
{
}
BooleanSetting::~BooleanSetting() = default;
bool BooleanSetting::GetValue() const
{
return m_value;