From 9395d7ea082906573302aab545922bd1fb2a07c6 Mon Sep 17 00:00:00 2001 From: Miksel12 Date: Sun, 4 Aug 2019 13:56:14 +0200 Subject: [PATCH] DolphinQt: Reorder nunchuk mapping --- .../Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp b/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp index 27a94ed5b5..cafbb5d22d 100644 --- a/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp +++ b/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp @@ -102,15 +102,15 @@ void WiimoteEmuExtension::CreateNunchukLayout() auto* layout = new QGridLayout(); m_nunchuk_box = new QGroupBox(tr("Nunchuk"), this); - layout->addWidget(CreateGroupBox(tr("Shake"), Wiimote::GetNunchukGroup( - GetPort(), WiimoteEmu::NunchukGroup::Shake)), + layout->addWidget(CreateGroupBox(tr("Stick"), Wiimote::GetNunchukGroup( + GetPort(), WiimoteEmu::NunchukGroup::Stick)), 0, 0); layout->addWidget( CreateGroupBox(tr("Buttons"), Wiimote::GetNunchukGroup(GetPort(), WiimoteEmu::NunchukGroup::Buttons)), 1, 0); - layout->addWidget(CreateGroupBox(tr("Stick"), Wiimote::GetNunchukGroup( - GetPort(), WiimoteEmu::NunchukGroup::Stick)), + layout->addWidget(CreateGroupBox(tr("Shake"), Wiimote::GetNunchukGroup( + GetPort(), WiimoteEmu::NunchukGroup::Shake)), 0, 1, -1, 1); layout->addWidget(CreateGroupBox(tr("Tilt"), Wiimote::GetNunchukGroup( GetPort(), WiimoteEmu::NunchukGroup::Tilt)),