Skip to content

Commit 6869413

Browse files
committed
Fix key mapping for right joycon.
1 parent 80cfab8 commit 6869413

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SerialPrograms/Source/NintendoSwitch/Controllers/NintendoSwitch_KeyboardMapping.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,8 +411,8 @@ std::vector<std::unique_ptr<EditableTableRow>> JoyconKeyboardMappingTable::make_
411411
ret.emplace_back(make_mapping("Home", Qt::Key::Key_Escape, JoyconDeltas{.buttons = BUTTON_HOME}));
412412
ret.emplace_back(make_mapping("Home", Qt::Key::Key_Insert, JoyconDeltas{.buttons = BUTTON_HOME}));
413413

414-
ret.emplace_back(make_mapping("SL", Qt::Key::Key_T, JoyconDeltas{.buttons = BUTTON_RIGHT_SL}));
415-
ret.emplace_back(make_mapping("SR", Qt::Key::Key_U, JoyconDeltas{.buttons = BUTTON_RIGHT_SR}));
414+
ret.emplace_back(make_mapping("SL", Qt::Key::Key_F1, JoyconDeltas{.buttons = BUTTON_RIGHT_SL}));
415+
ret.emplace_back(make_mapping("SR", Qt::Key::Key_F3, JoyconDeltas{.buttons = BUTTON_RIGHT_SR}));
416416
}
417417

418418
return ret;

0 commit comments

Comments
 (0)