Add pctl IParentalControlService: 1001 (CheckFreeCommunicationPermission)

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

View file

@ -18,7 +18,8 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
{ {
_commands = new Dictionary<int, ServiceProcessRequest> _commands = new Dictionary<int, ServiceProcessRequest>
{ {
{ 1, Initialize } { 1, Initialize },
{ 1001, CheckFreeCommunicationPermission }
}; };
_needInitialize = needInitialize; _needInitialize = needInitialize;
@ -37,5 +38,12 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
return 0; return 0;
} }
public long CheckFreeCommunicationPermission(ServiceCtx context)
{
Logger.PrintStub(LogClass.ServicePctl);
return 0;
}
} }
} }