mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 06:10:06 +02:00
Include SL/SR default bindings for single joycons
Single L/R Joycons default to unbound for the SL/SR inputs - so by default you can't progress past 'press L + R to continue' type screens. But * ConfigGamepadInputId.SingleLeftTrigger0(L) * ConfigGamepadInputId.SingleRightTrigger0(L) * ConfigGamepadInputId.SingleLeftTrigger1(R) * ConfigGamepadInputId.SingleRightTrigger1(R) already exist (and I verified these are the inputs triggered by the SL/SR buttons), so my change would default to these instead.
This commit is contained in:
@@ -634,8 +634,8 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
||||
ButtonMinus = ConfigGamepadInputId.Minus,
|
||||
ButtonL = ConfigGamepadInputId.LeftShoulder,
|
||||
ButtonZl = ConfigGamepadInputId.LeftTrigger,
|
||||
ButtonSl = ConfigGamepadInputId.Unbound,
|
||||
ButtonSr = ConfigGamepadInputId.Unbound,
|
||||
ButtonSl = ConfigGamepadInputId.SingleLeftTrigger0,
|
||||
ButtonSr = ConfigGamepadInputId.SingleRightTrigger0,
|
||||
},
|
||||
LeftJoyconStick = new JoyconConfigControllerStick<ConfigGamepadInputId, ConfigStickInputId>
|
||||
{
|
||||
@@ -653,8 +653,8 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
||||
ButtonPlus = ConfigGamepadInputId.Plus,
|
||||
ButtonR = ConfigGamepadInputId.RightShoulder,
|
||||
ButtonZr = ConfigGamepadInputId.RightTrigger,
|
||||
ButtonSl = ConfigGamepadInputId.Unbound,
|
||||
ButtonSr = ConfigGamepadInputId.Unbound,
|
||||
ButtonSl = ConfigGamepadInputId.SingleLeftTrigger1,
|
||||
ButtonSr = ConfigGamepadInputId.SingleRightTrigger1,
|
||||
},
|
||||
RightJoyconStick = new JoyconConfigControllerStick<ConfigGamepadInputId, ConfigStickInputId>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user