diff options
author | bunnei <bunneidev@gmail.com> | 2021-11-28 09:54:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-28 09:54:48 +0100 |
commit | 11a9bff36d1c03df24c6bdef089e3db3184e67b4 (patch) | |
tree | 855f56c1f0a5d73c3cf2b2ccab47777c7920eb14 /src/core/hle/service/hid | |
parent | Merge pull request #7451 from german77/debug_controller (diff) | |
parent | core/ns: Implement GetReadOnlyApplicationControlDataInterface (diff) | |
download | yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.tar yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.tar.gz yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.tar.bz2 yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.tar.lz yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.tar.xz yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.tar.zst yuzu-11a9bff36d1c03df24c6bdef089e3db3184e67b4.zip |
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 14 |
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 95fc07325..b36689552 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -1883,7 +1883,7 @@ public: {317, nullptr, "GetNpadLeftRightInterfaceType"}, {318, nullptr, "HasBattery"}, {319, nullptr, "HasLeftRightBattery"}, - {321, nullptr, "GetUniquePadsFromNpad"}, + {321, &HidSys::GetUniquePadsFromNpad, "GetUniquePadsFromNpad"}, {322, nullptr, "GetIrSensorState"}, {323, nullptr, "GetXcdHandleForNpadWithIrSensor"}, {324, nullptr, "GetUniquePadButtonSet"}, @@ -2054,6 +2054,18 @@ private: IPC::ResponseBuilder rb{ctx, 2}; rb.Push(ResultSuccess); } + + void GetUniquePadsFromNpad(Kernel::HLERequestContext& ctx) { + IPC::RequestParser rp{ctx}; + const auto npad_id_type{rp.PopEnum<Core::HID::NpadIdType>()}; + + const s64 total_entries = 0; + LOG_WARNING(Service_HID, "(STUBBED) called, npad_id_type={}", npad_id_type); + + IPC::ResponseBuilder rb{ctx, 3}; + rb.Push(ResultSuccess); + rb.Push(total_entries); + } }; class HidTmp final : public ServiceFramework<HidTmp> { |