summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-11-16 15:40:18 +0100
committerDavid Marcec <dmarcecguzman@gmail.com>2018-11-16 15:40:18 +0100
commite658118aa947181d12835a932ca1c7782be21c62 (patch)
tree15e194f13b0ec465d9adbf6a0763b51a6c08bcc8 /src/core/hle/service/hid/hid.cpp
parentMerge pull request #1709 from ogniK5377/docked-mode-crash (diff)
downloadyuzu-e658118aa947181d12835a932ca1c7782be21c62.tar
yuzu-e658118aa947181d12835a932ca1c7782be21c62.tar.gz
yuzu-e658118aa947181d12835a932ca1c7782be21c62.tar.bz2
yuzu-e658118aa947181d12835a932ca1c7782be21c62.tar.lz
yuzu-e658118aa947181d12835a932ca1c7782be21c62.tar.xz
yuzu-e658118aa947181d12835a932ca1c7782be21c62.tar.zst
yuzu-e658118aa947181d12835a932ca1c7782be21c62.zip
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
-rw-r--r--src/core/hle/service/hid/hid.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index a45fd4954..39631b14f 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -286,10 +286,10 @@ public:
{519, nullptr, "GetPalmaOperationResult"},
{520, nullptr, "ReadPalmaPlayLog"},
{521, nullptr, "ResetPalmaPlayLog"},
- {522, nullptr, "SetIsPalmaAllConnectable"},
+ {522, &Hid::SetIsPalmaAllConnectable, "SetIsPalmaAllConnectable"},
{523, nullptr, "SetIsPalmaPairedConnectable"},
{524, nullptr, "PairPalma"},
- {525, nullptr, "SetPalmaBoostMode"},
+ {525, &Hid::SetPalmaBoostMode, "SetPalmaBoostMode"},
{1000, nullptr, "SetNpadCommunicationMode"},
{1001, nullptr, "GetNpadCommunicationMode"},
};
@@ -596,6 +596,18 @@ private:
rb.Push(RESULT_SUCCESS);
LOG_WARNING(Service_HID, "(STUBBED) called");
}
+
+ void SetIsPalmaAllConnectable(Kernel::HLERequestContext& ctx) {
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_SUCCESS);
+ LOG_WARNING(Service_HID, "(STUBBED) called");
+ }
+
+ void SetPalmaBoostMode(Kernel::HLERequestContext& ctx) {
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_SUCCESS);
+ LOG_WARNING(Service_HID, "(STUBBED) called");
+ }
};
class HidDbg final : public ServiceFramework<HidDbg> {