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

View file

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