Add pctl IParentalControlService: 1001 (CheckFreeCommunicationPermission)

This commit is contained in:
HorrorTroll 2019-03-22 21:05:33 +07:00
parent 6aa808eb92
commit 96f70483af

View file

@ -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;
}
}
}