diff options
author | bunnei <bunneidev@gmail.com> | 2021-02-06 11:40:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 11:40:11 +0100 |
commit | 61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353 (patch) | |
tree | 08709ce3ce8890b37353ff747f4ce4401fcb1fd1 /src/core/hle/service/am | |
parent | Merge pull request #5862 from bunnei/kevent (diff) | |
parent | Add footer types and address comments (diff) | |
download | yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.tar yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.tar.gz yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.tar.bz2 yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.tar.lz yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.tar.xz yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.tar.zst yuzu-61bf850f3dfd0b44aa5d56f6f3147d7a1fa47353.zip |
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r-- | src/core/hle/service/am/applets/controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/controller.cpp b/src/core/hle/service/am/applets/controller.cpp index 7edfca64e..d7d3ee99a 100644 --- a/src/core/hle/service/am/applets/controller.cpp +++ b/src/core/hle/service/am/applets/controller.cpp @@ -37,7 +37,7 @@ static Core::Frontend::ControllerParameters ConvertToFrontendParameters( .border_colors = std::move(identification_colors), .enable_explain_text = enable_text, .explain_text = std::move(text), - .allow_pro_controller = npad_style_set.pro_controller == 1, + .allow_pro_controller = npad_style_set.fullkey == 1, .allow_handheld = npad_style_set.handheld == 1, .allow_dual_joycons = npad_style_set.joycon_dual == 1, .allow_left_joycon = npad_style_set.joycon_left == 1, |