mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	hid: Stub GetXpadIDs
Allows Minecraft: Nintendo Switch Edition (a.k.a. old Minecraft) to boot and go ingame
This commit is contained in:
		
							parent
							
								
									058ec22787
								
							
						
					
					
						commit
						4d10d3113f
					
				@ -161,7 +161,7 @@ Hid::Hid(Core::System& system) : ServiceFramework("hid"), system(system) {
 | 
			
		||||
        {40, nullptr, "AcquireXpadIdEventHandle"},
 | 
			
		||||
        {41, nullptr, "ReleaseXpadIdEventHandle"},
 | 
			
		||||
        {51, &Hid::ActivateXpad, "ActivateXpad"},
 | 
			
		||||
        {55, nullptr, "GetXpadIds"},
 | 
			
		||||
        {55, &Hid::GetXpadIDs, "GetXpadIds"},
 | 
			
		||||
        {56, nullptr, "ActivateJoyXpad"},
 | 
			
		||||
        {58, nullptr, "GetJoyXpadLifoHandle"},
 | 
			
		||||
        {59, nullptr, "GetJoyXpadIds"},
 | 
			
		||||
@ -319,6 +319,18 @@ void Hid::ActivateXpad(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Hid::GetXpadIDs(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp{ctx};
 | 
			
		||||
    const auto applet_resource_user_id{rp.Pop<u64>()};
 | 
			
		||||
 | 
			
		||||
    LOG_DEBUG(Service_HID, "(STUBBED) called, applet_resource_user_id={}", 
 | 
			
		||||
              applet_resource_user_id);
 | 
			
		||||
 | 
			
		||||
    IPC::ResponseBuilder rb{ctx, 3};
 | 
			
		||||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    rb.Push(0);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Hid::ActivateDebugPad(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp{ctx};
 | 
			
		||||
    const auto applet_resource_user_id{rp.Pop<u64>()};
 | 
			
		||||
 | 
			
		||||
@ -86,6 +86,7 @@ public:
 | 
			
		||||
private:
 | 
			
		||||
    void CreateAppletResource(Kernel::HLERequestContext& ctx);
 | 
			
		||||
    void ActivateXpad(Kernel::HLERequestContext& ctx);
 | 
			
		||||
    void GetXpadIDs(Kernel::HLERequestContext& ctx);
 | 
			
		||||
    void ActivateDebugPad(Kernel::HLERequestContext& ctx);
 | 
			
		||||
    void ActivateTouchScreen(Kernel::HLERequestContext& ctx);
 | 
			
		||||
    void ActivateMouse(Kernel::HLERequestContext& ctx);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user