diff options
author | german77 <juangerman-13@hotmail.com> | 2024-02-05 22:34:05 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-06 16:51:39 -0600 |
commit | 12f86f89fc2f8c77e99fdec37c8d3d4f63487192 (patch) | |
tree | b5d7ad2ad94f396a7c3de414681271a8ae95af4a /src/yuzu/hotkeys.cpp | |
parent | a2f23746c26e0882ff8ffadc814a09859efe54e2 (diff) |
yuzu: Make controller keys easier to assign
Diffstat (limited to 'src/yuzu/hotkeys.cpp')
-rw-r--r-- | src/yuzu/hotkeys.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/hotkeys.cpp b/src/yuzu/hotkeys.cpp index b7693ad0d..170f14684 100644 --- a/src/yuzu/hotkeys.cpp +++ b/src/yuzu/hotkeys.cpp @@ -193,8 +193,7 @@ void ControllerShortcut::ControllerUpdateEvent(Core::HID::ControllerTriggerType if (!Settings::values.controller_navigation) { return; } - if (button_sequence.npad.raw == Core::HID::NpadButton::None && - button_sequence.capture.raw == 0 && button_sequence.home.raw == 0) { + if (button_sequence.npad.raw == Core::HID::NpadButton::None) { return; } |