diff --git a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs b/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs index 0c539aa131..2a4a3bddc9 100644 --- a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs +++ b/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs @@ -18,7 +18,8 @@ namespace Ryujinx.HLE.HOS.Services.Pctl { _commands = new Dictionary { - { 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; + } } } \ No newline at end of file