mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	friend: Stub DeclareCloseOnlinePlaySession.
- Used by Splatoon 2.
This commit is contained in:
		
							parent
							
								
									261a4f0311
								
							
						
					
					
						commit
						249341d08f
					
				@ -24,7 +24,8 @@ public:
 | 
			
		||||
            {10400, nullptr, "GetBlockedUserListIds"},
 | 
			
		||||
            {10500, nullptr, "GetProfileList"},
 | 
			
		||||
            {10600, nullptr, "DeclareOpenOnlinePlaySession"},
 | 
			
		||||
            {10601, nullptr, "DeclareCloseOnlinePlaySession"},
 | 
			
		||||
            {10601, &IFriendService::DeclareCloseOnlinePlaySession,
 | 
			
		||||
             "DeclareCloseOnlinePlaySession"},
 | 
			
		||||
            {10610, nullptr, "UpdateUserPresence"},
 | 
			
		||||
            {10700, nullptr, "GetPlayHistoryRegistrationKey"},
 | 
			
		||||
            {10701, nullptr, "GetPlayHistoryRegistrationKeyWithNetworkServiceAccountId"},
 | 
			
		||||
@ -90,6 +91,14 @@ public:
 | 
			
		||||
 | 
			
		||||
        RegisterHandlers(functions);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void DeclareCloseOnlinePlaySession(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
        // Stub used by Splatoon 2
 | 
			
		||||
        LOG_WARNING(Service_ACC, "(STUBBED) called");
 | 
			
		||||
        IPC::ResponseBuilder rb{ctx, 2};
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user