Add pctl IParentalControlService: 1001 (CheckFreeCommunicationPermission)
This commit is contained in:
parent
6aa808eb92
commit
96f70483af
1 changed files with 9 additions and 1 deletions
|
@ -18,7 +18,8 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
|
|||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>
|
||||
{
|
||||
{ 1, Initialize }
|
||||
{ 1, Initialize },
|
||||
{ 1001, CheckFreeCommunicationPermission }
|
||||
};
|
||||
|
||||
_needInitialize = needInitialize;
|
||||
|
@ -37,5 +38,12 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public long CheckFreeCommunicationPermission(ServiceCtx context)
|
||||
{
|
||||
Logger.PrintStub(LogClass.ServicePctl);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue