diff options
author | mailwl <mailwl@gmail.com> | 2018-02-06 08:26:33 +0100 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2018-02-06 08:47:00 +0100 |
commit | 8d300b2d7ea08e213d811edca706ca4b8cf3e69a (patch) | |
tree | a847157daf8441800202d1ea6baed4c6ba6f41b3 /src/core/hle/service | |
parent | Merge pull request #165 from bunnei/puyo-fixes (diff) | |
download | yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.tar yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.tar.gz yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.tar.bz2 yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.tar.lz yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.tar.xz yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.tar.zst yuzu-8d300b2d7ea08e213d811edca706ca4b8cf3e69a.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 9c2e405ee..3e35f5999 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -181,6 +181,7 @@ public: {103, &Hid::ActivateNpad, "ActivateNpad"}, {120, &Hid::SetNpadJoyHoldType, "SetNpadJoyHoldType"}, {124, nullptr, "SetNpadJoyAssignmentModeDual"}, + {128, &Hid::SetNpadHandheldActivationMode, "SetNpadHandheldActivationMode"}, {203, &Hid::CreateActiveVibrationDeviceList, "CreateActiveVibrationDeviceList"}, }; RegisterHandlers(functions); @@ -243,6 +244,12 @@ private: LOG_WARNING(Service_HID, "(STUBBED) called"); } + void SetNpadHandheldActivationMode(Kernel::HLERequestContext& ctx) { + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(RESULT_SUCCESS); + LOG_WARNING(Service_HID, "(STUBBED) called"); + } + void CreateActiveVibrationDeviceList(Kernel::HLERequestContext& ctx) { IPC::ResponseBuilder rb{ctx, 2, 0, 1}; rb.Push(RESULT_SUCCESS); |