Service/hid: stub SetNpadHandheldActivationMode
This commit is contained in:
		| @@ -181,6 +181,7 @@ public: | |||||||
|             {103, &Hid::ActivateNpad, "ActivateNpad"}, |             {103, &Hid::ActivateNpad, "ActivateNpad"}, | ||||||
|             {120, &Hid::SetNpadJoyHoldType, "SetNpadJoyHoldType"}, |             {120, &Hid::SetNpadJoyHoldType, "SetNpadJoyHoldType"}, | ||||||
|             {124, nullptr, "SetNpadJoyAssignmentModeDual"}, |             {124, nullptr, "SetNpadJoyAssignmentModeDual"}, | ||||||
|  |             {128, &Hid::SetNpadHandheldActivationMode, "SetNpadHandheldActivationMode"}, | ||||||
|             {203, &Hid::CreateActiveVibrationDeviceList, "CreateActiveVibrationDeviceList"}, |             {203, &Hid::CreateActiveVibrationDeviceList, "CreateActiveVibrationDeviceList"}, | ||||||
|         }; |         }; | ||||||
|         RegisterHandlers(functions); |         RegisterHandlers(functions); | ||||||
| @@ -243,6 +244,12 @@ private: | |||||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); |         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) { |     void CreateActiveVibrationDeviceList(Kernel::HLERequestContext& ctx) { | ||||||
|         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |         IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||||
|         rb.Push(RESULT_SUCCESS); |         rb.Push(RESULT_SUCCESS); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user