Skip to content

Commit

Permalink
Stub Ldn.Lp2p.ISfService: 776 (DestroyGroup) (#353)
Browse files Browse the repository at this point in the history
This prevents a crash in Mario Kart Live: Home Circuit that would occur
after exiting the kart pairing screen.
  • Loading branch information
LukeWarnut authored Dec 6, 2024
1 parent a1e6d11 commit baad1e3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/ISfService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ public ResultCode CreateGroup(ServiceCtx context)
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)
Expand Down

0 comments on commit baad1e3

Please sign in to comment.