WiimoteEmu: Resolve unrelated lint code style warnings

This discrepancy was introduced in b3b1845785429e19076063c00daf13a2da1ec6b1
This commit is contained in:
Lioncash 2018-07-13 13:33:57 -04:00
parent cfe7549091
commit 9983d92981

View File

@ -428,9 +428,9 @@ Wiimote::Wiimote(const unsigned int index) : m_index(index), ir_sin(0), ir_cos(1
// options // options
groups.emplace_back(m_options = new ControllerEmu::ControlGroup(_trans("Options"))); groups.emplace_back(m_options = new ControllerEmu::ControlGroup(_trans("Options")));
m_options->boolean_settings.emplace_back(new ControllerEmu::BooleanSetting( m_options->boolean_settings.emplace_back(
"Forward Wiimote", _trans("Forward Wii Remote"), new ControllerEmu::BooleanSetting("Forward Wiimote", _trans("Forward Wii Remote"), true,
true, ControllerEmu::SettingType::NORMAL, true)); ControllerEmu::SettingType::NORMAL, true));
m_options->boolean_settings.emplace_back(m_upright_setting = new ControllerEmu::BooleanSetting( m_options->boolean_settings.emplace_back(m_upright_setting = new ControllerEmu::BooleanSetting(
"Upright Wiimote", _trans("Upright Wii Remote"), "Upright Wiimote", _trans("Upright Wii Remote"),
false, ControllerEmu::SettingType::NORMAL, true)); false, ControllerEmu::SettingType::NORMAL, true));