WiimoteEmu: Resolve unrelated lint code style warnings

This discrepancy was introduced in b3b1845785
This commit is contained in:
Lioncash 2018-07-13 13:33:57 -04:00
parent cfe7549091
commit 9983d92981
1 changed files with 3 additions and 3 deletions

View File

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