diff options
| author | JosJuice <josjuice@gmail.com> | 2019-08-04 15:42:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-04 15:42:32 +0200 |
| commit | 7f6abfb0bf55612e1c2bde0ef633bd669e08e3ba (patch) | |
| tree | 1ea29d5e1dc1803af1567f5eea6421837aba53af /Source/Core | |
| parent | d3151d880809efdfca9b622c696df6413cc25955 (diff) | |
| parent | 9395d7ea082906573302aab545922bd1fb2a07c6 (diff) | |
Merge pull request #8289 from Miksel12/nunchuk-reorder
DolphinQt: Reorder nunchuk mapping
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.cpp | 8 |
1 files 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)), |
