summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2024-01-07 05:04:14 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2024-01-07 06:30:43 +0100
commit5105b900179e639a766c8013e7d24551e6a58a95 (patch)
treef4830e36817e18511b6fbdaeb97bc1aa7f009581 /src/core
parentservice: hid: Implement AssigningSingleOnSlSrPress (diff)
downloadyuzu-5105b900179e639a766c8013e7d24551e6a58a95.tar
yuzu-5105b900179e639a766c8013e7d24551e6a58a95.tar.gz
yuzu-5105b900179e639a766c8013e7d24551e6a58a95.tar.bz2
yuzu-5105b900179e639a766c8013e7d24551e6a58a95.tar.lz
yuzu-5105b900179e639a766c8013e7d24551e6a58a95.tar.xz
yuzu-5105b900179e639a766c8013e7d24551e6a58a95.tar.zst
yuzu-5105b900179e639a766c8013e7d24551e6a58a95.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/hid/hid_system_server.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/hid_system_server.cpp b/src/core/hle/service/hid/hid_system_server.cpp
index 94d566650..3a0cb3cb1 100644
--- a/src/core/hle/service/hid/hid_system_server.cpp
+++ b/src/core/hle/service/hid/hid_system_server.cpp
@@ -275,11 +275,14 @@ void IHidSystemServer::DisableAssigningSingleOnSlSrPress(HLERequestContext& ctx)
}
void IHidSystemServer::GetLastActiveNpad(HLERequestContext& ctx) {
- LOG_DEBUG(Service_HID, "(STUBBED) called"); // Spams a lot when controller applet is running
+ Core::HID::NpadIdType npad_id{};
+ const Result result = GetResourceManager()->GetNpad()->GetLastActiveNpad(npad_id);
+
+ LOG_DEBUG(Service_HID, "called, npad_id={}", npad_id);
IPC::ResponseBuilder rb{ctx, 3};
- rb.Push(ResultSuccess);
- rb.Push(0); // Dont forget to fix this
+ rb.Push(result);
+ rb.PushEnum(npad_id);
}
void IHidSystemServer::ApplyNpadSystemCommonPolicyFull(HLERequestContext& ctx) {