This commit is contained in:
HorrorTroll 2019-03-25 14:13:26 +07:00
parent 01c70c17c2
commit c5f0685118

View file

@ -25,6 +25,7 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
_needInitialize = needInitialize;
}
// Initialize()
public long Initialize(ServiceCtx context)
{
if (_needInitialize && !_initialized)
@ -39,6 +40,7 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
return 0;
}
// CheckFreeCommunicationPermission(bool)
public long CheckFreeCommunicationPermission(ServiceCtx context)
{
bool enable = context.RequestData.ReadByte() != 0;