summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.cpp
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-01 19:38:44 +0200
committerGitHub <noreply@github.com>2020-06-01 19:38:44 +0200
commit4d10d3113fbb22f225fb0353f3f28c39902af11d (patch)
treebb0daeec2a84503da1343df7db2c836121d903e3 /src/core/hle/service/hid/hid.cpp
parentMerge pull request #3982 from ReinUsesLisp/membar-cts (diff)
downloadyuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.tar
yuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.tar.gz
yuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.tar.bz2
yuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.tar.lz
yuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.tar.xz
yuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.tar.zst
yuzu-4d10d3113fbb22f225fb0353f3f28c39902af11d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/hid.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index c84cb1483..18fb1d62c 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -161,7 +161,7 @@ Hid::Hid(Core::System& system) : ServiceFramework("hid"), system(system) {
{40, nullptr, "AcquireXpadIdEventHandle"},
{41, nullptr, "ReleaseXpadIdEventHandle"},
{51, &Hid::ActivateXpad, "ActivateXpad"},
- {55, nullptr, "GetXpadIds"},
+ {55, &Hid::GetXpadIDs, "GetXpadIds"},
{56, nullptr, "ActivateJoyXpad"},
{58, nullptr, "GetJoyXpadLifoHandle"},
{59, nullptr, "GetJoyXpadIds"},
@@ -319,6 +319,18 @@ void Hid::ActivateXpad(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS);
}
+void Hid::GetXpadIDs(Kernel::HLERequestContext& ctx) {
+ IPC::RequestParser rp{ctx};
+ const auto applet_resource_user_id{rp.Pop<u64>()};
+
+ LOG_DEBUG(Service_HID, "(STUBBED) called, applet_resource_user_id={}",
+ applet_resource_user_id);
+
+ IPC::ResponseBuilder rb{ctx, 3};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push(0);
+}
+
void Hid::ActivateDebugPad(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const auto applet_resource_user_id{rp.Pop<u64>()};