mc.mitm: map L3/R3 for betop 2585N2 controller

This commit is contained in:
ndeadly 2023-06-19 10:22:18 +02:00
parent eed9031fc6
commit cfa9041422
2 changed files with 5 additions and 0 deletions

View file

@ -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;

View file

@ -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;