diff options
author | german77 <juangerman-13@hotmail.com> | 2024-02-11 23:07:53 +0100 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2024-02-11 23:29:31 +0100 |
commit | 26e028808ac48fed3509c86f7084a801ed36daf2 (patch) | |
tree | 13460aa95e45e9af010e92a1cd07d9e97a0e2a7a | |
parent | Merge pull request #12969 from german77/bcat-interface (diff) | |
download | yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.tar yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.tar.gz yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.tar.bz2 yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.tar.lz yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.tar.xz yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.tar.zst yuzu-26e028808ac48fed3509c86f7084a801ed36daf2.zip |
-rw-r--r-- | src/yuzu/hotkeys.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/yuzu/hotkeys.cpp b/src/yuzu/hotkeys.cpp index 170f14684..1931dcd1f 100644 --- a/src/yuzu/hotkeys.cpp +++ b/src/yuzu/hotkeys.cpp @@ -190,10 +190,8 @@ void ControllerShortcut::ControllerUpdateEvent(Core::HID::ControllerTriggerType if (type != Core::HID::ControllerTriggerType::Button) { return; } - if (!Settings::values.controller_navigation) { - return; - } - if (button_sequence.npad.raw == Core::HID::NpadButton::None) { + if (button_sequence.npad.raw == Core::HID::NpadButton::None && + button_sequence.capture.raw == 0 && button_sequence.home.raw == 0) { return; } |