mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-31 07:59:02 -05:00 
			
		
		
		
	Added ActivateGesture
This commit is contained in:
		| @@ -329,7 +329,7 @@ public: | ||||
|             {80, nullptr, "GetGyroscopeZeroDriftMode"}, | ||||
|             {81, nullptr, "ResetGyroscopeZeroDriftMode"}, | ||||
|             {82, &Hid::IsSixAxisSensorAtRest, "IsSixAxisSensorAtRest"}, | ||||
|             {91, nullptr, "ActivateGesture"}, | ||||
|             {91, &Hid::ActivateGesture, "ActivateGesture"}, | ||||
|             {100, &Hid::SetSupportedNpadStyleSet, "SetSupportedNpadStyleSet"}, | ||||
|             {101, &Hid::GetSupportedNpadStyleSet, "GetSupportedNpadStyleSet"}, | ||||
|             {102, &Hid::SetSupportedNpadIdType, "SetSupportedNpadIdType"}, | ||||
| @@ -597,6 +597,12 @@ private: | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
|  | ||||
|     void ActivateGesture(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::ResponseBuilder rb{ctx, 2}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||
|     } | ||||
| }; | ||||
|  | ||||
| class HidDbg final : public ServiceFramework<HidDbg> { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 David Marcec
					David Marcec