summaryrefslogtreecommitdiffstats
path: root/src/core/hid/emulated_controller.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-12-30 05:15:08 +0100
committergerman77 <juangerman-13@hotmail.com>2021-12-30 05:51:53 +0100
commit9ee5c4ec5629c185d29dd41468047004acef2e29 (patch)
tree997dd6a3916e3bd84cf5a109421d18f72d678fc4 /src/core/hid/emulated_controller.cpp
parentMerge pull request #7620 from bunnei/kernel-thread-x18 (diff)
downloadyuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.tar
yuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.tar.gz
yuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.tar.bz2
yuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.tar.lz
yuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.tar.xz
yuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.tar.zst
yuzu-9ee5c4ec5629c185d29dd41468047004acef2e29.zip
Diffstat (limited to 'src/core/hid/emulated_controller.cpp')
-rw-r--r--src/core/hid/emulated_controller.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp
index ff9d7a7e3..2d3fce276 100644
--- a/src/core/hid/emulated_controller.cpp
+++ b/src/core/hid/emulated_controller.cpp
@@ -886,8 +886,9 @@ void EmulatedController::SetSupportedNpadStyleTag(NpadStyleTag supported_styles)
}
}
-bool EmulatedController::IsControllerSupported() const {
- switch (npad_type) {
+bool EmulatedController::IsControllerSupported(bool use_temporary_value) const {
+ const auto type = is_configuring && use_temporary_value ? tmp_npad_type : npad_type;
+ switch (type) {
case NpadStyleIndex::ProController:
return supported_style_tag.fullkey;
case NpadStyleIndex::Handheld:
@@ -915,9 +916,10 @@ bool EmulatedController::IsControllerSupported() const {
}
}
-void EmulatedController::Connect() {
- if (!IsControllerSupported()) {
- LOG_ERROR(Service_HID, "Controller type {} is not supported", npad_type);
+void EmulatedController::Connect(bool use_temporary_value) {
+ if (!IsControllerSupported(use_temporary_value)) {
+ const auto type = is_configuring && use_temporary_value ? tmp_npad_type : npad_type;
+ LOG_ERROR(Service_HID, "Controller type {} is not supported", type);
return;
}
{