mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 10:23:42 +00:00 
			
		
		
		
	hid: Stub out GetSupportedNpadStyleSet.
This commit is contained in:
		
							parent
							
								
									eef097bdc7
								
							
						
					
					
						commit
						b6b7d78ded
					
				@ -185,6 +185,7 @@ public:
 | 
			
		||||
            {66, &Hid::StartSixAxisSensor, "StartSixAxisSensor"},
 | 
			
		||||
            {79, &Hid::SetGyroscopeZeroDriftMode, "SetGyroscopeZeroDriftMode"},
 | 
			
		||||
            {100, &Hid::SetSupportedNpadStyleSet, "SetSupportedNpadStyleSet"},
 | 
			
		||||
            {101, &Hid::GetSupportedNpadStyleSet, "GetSupportedNpadStyleSet"},
 | 
			
		||||
            {102, &Hid::SetSupportedNpadIdType, "SetSupportedNpadIdType"},
 | 
			
		||||
            {103, &Hid::ActivateNpad, "ActivateNpad"},
 | 
			
		||||
            {106, &Hid::AcquireNpadStyleSetUpdateEventHandle,
 | 
			
		||||
@ -265,6 +266,13 @@ private:
 | 
			
		||||
        LOG_WARNING(Service_HID, "(STUBBED) called");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void GetSupportedNpadStyleSet(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
        IPC::ResponseBuilder rb{ctx, 3};
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
        rb.Push<u32>(0);
 | 
			
		||||
        LOG_WARNING(Service_HID, "(STUBBED) called");
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void SetSupportedNpadIdType(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
        IPC::ResponseBuilder rb{ctx, 2};
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user