mirror of
https://github.com/ndeadly/MissionControl
synced 2025-02-16 13:18:27 +00:00
mc.mitm: map L3/R3 for betop 2585N2 controller
This commit is contained in:
parent
eed9031fc6
commit
cfa9041422
2 changed files with 5 additions and 0 deletions
|
@ -68,6 +68,9 @@ namespace ams::controller {
|
|||
m_buttons.L = src->input0x03.buttons.L1;
|
||||
m_buttons.ZL = src->input0x03.buttons.L2;
|
||||
|
||||
m_buttons.lstick_press = src->input0x03.buttons.L3;
|
||||
m_buttons.rstick_press = src->input0x03.buttons.R3;
|
||||
|
||||
m_buttons.minus = src->input0x03.buttons.select;
|
||||
m_buttons.plus = src->input0x03.buttons.start;
|
||||
|
||||
|
|
|
@ -52,6 +52,8 @@ namespace ams::controller {
|
|||
u8 select : 1;
|
||||
u8 start : 1;
|
||||
u8 home : 1;
|
||||
u8 L3 : 1;
|
||||
u8 R3 : 1;
|
||||
u8 : 0;
|
||||
} PACKED;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue