diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-20 10:14:49 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-20 10:14:49 +0200 |
commit | 8a881100603f2d3b9251a494026e6441111445ed (patch) | |
tree | 81d9afbd3b11d3fb01231b20623c803aa8958d30 | |
parent | Merge pull request #1089 from Subv/neg_bits (diff) | |
download | yuzu-8a881100603f2d3b9251a494026e6441111445ed.tar yuzu-8a881100603f2d3b9251a494026e6441111445ed.tar.gz yuzu-8a881100603f2d3b9251a494026e6441111445ed.tar.bz2 yuzu-8a881100603f2d3b9251a494026e6441111445ed.tar.lz yuzu-8a881100603f2d3b9251a494026e6441111445ed.tar.xz yuzu-8a881100603f2d3b9251a494026e6441111445ed.tar.zst yuzu-8a881100603f2d3b9251a494026e6441111445ed.zip |
-rw-r--r-- | src/core/hle/service/pctl/module.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/service/pctl/module.cpp b/src/core/hle/service/pctl/module.cpp index fcf1f3da3..6cc3b1992 100644 --- a/src/core/hle/service/pctl/module.cpp +++ b/src/core/hle/service/pctl/module.cpp @@ -14,7 +14,8 @@ public: IParentalControlService() : ServiceFramework("IParentalControlService") { static const FunctionInfo functions[] = { {1, &IParentalControlService::Initialize, "Initialize"}, - {1001, nullptr, "CheckFreeCommunicationPermission"}, + {1001, &IParentalControlService::CheckFreeCommunicationPermission, + "CheckFreeCommunicationPermission"}, {1002, nullptr, "ConfirmLaunchApplicationPermission"}, {1003, nullptr, "ConfirmResumeApplicationPermission"}, {1004, nullptr, "ConfirmSnsPostPermission"}, @@ -116,6 +117,12 @@ private: IPC::ResponseBuilder rb{ctx, 2, 0, 0}; rb.Push(RESULT_SUCCESS); } + + void CheckFreeCommunicationPermission(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service_PCTL, "(STUBBED) called"); + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(RESULT_SUCCESS); + } }; void Module::Interface::CreateService(Kernel::HLERequestContext& ctx) { |