Stub Ldn.Lp2p.ISfService: 776 (DestroyGroup) (#353)

This prevents a crash in Mario Kart Live: Home Circuit that would occur
after exiting the kart pairing screen.
This commit is contained in:
Luke Warner 2024-12-06 15:43:31 -05:00 committed by GitHub
parent a1e6d11dcb
commit baad1e313f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,6 +24,15 @@ namespace Ryujinx.HLE.HOS.Services.Ldn.Lp2p
return ResultCode.Success;
}
[CommandCmif(776)]
// DestroyGroup()
public ResultCode DestroyGroup(ServiceCtx context)
{
Logger.Stub?.PrintStub(LogClass.ServiceLdn);
return ResultCode.Success;
}
[CommandCmif(1536)]
// SendToOtherGroup(nn::lp2p::MacAddress, nn::lp2p::GroupId, s16, s16, u32, buffer<unknown, 0x21>)
public ResultCode SendToOtherGroup(ServiceCtx context)