aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNarr the Reg <[email protected]>2024-01-19 00:09:49 -0600
committerNarr the Reg <[email protected]>2024-01-19 00:09:49 -0600
commit9f376cd901447ad371f23ef14ce195ecc8d435f4 (patch)
tree552c4e24511e1b9053804f6fb425c1616ea0af23
parent915efa42365d2734a7f34f9d51fbf187135989d7 (diff)
downloadyuzu-mainline-9f376cd901447ad371f23ef14ce195ecc8d435f4.tar.gz
yuzu-mainline-9f376cd901447ad371f23ef14ce195ecc8d435f4.zip
service: hid: Clear controller status when aruid is no longer used
-rw-r--r--src/hid_core/resources/npad/npad.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hid_core/resources/npad/npad.cpp b/src/hid_core/resources/npad/npad.cpp
index 97537a2e2..de0f9cbb9 100644
--- a/src/hid_core/resources/npad/npad.cpp
+++ b/src/hid_core/resources/npad/npad.cpp
@@ -1232,6 +1232,13 @@ Result NPad::RegisterAppletResourceUserId(u64 aruid) {
}
void NPad::UnregisterAppletResourceUserId(u64 aruid) {
+ // TODO: Remove this once abstract pad is emulated properly
+ const auto aruid_index = npad_resource.GetIndexFromAruid(aruid);
+ for (auto& controller : controller_data[aruid_index]) {
+ controller.is_connected = false;
+ controller.shared_memory = nullptr;
+ }
+
npad_resource.UnregisterAppletResourceUserId(aruid);
}