diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-05 17:16:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 17:16:19 +0100 |
commit | ced130297568cba5787f78daf911a2a07e506c34 (patch) | |
tree | 13619c6fa37f9e30c4317eee5776f3efb86588fc | |
parent | vulkan_device: Add missing vulkan image format R5G6B5 in GetFormatProperties (diff) | |
download | yuzu-ced130297568cba5787f78daf911a2a07e506c34.tar yuzu-ced130297568cba5787f78daf911a2a07e506c34.tar.gz yuzu-ced130297568cba5787f78daf911a2a07e506c34.tar.bz2 yuzu-ced130297568cba5787f78daf911a2a07e506c34.tar.lz yuzu-ced130297568cba5787f78daf911a2a07e506c34.tar.xz yuzu-ced130297568cba5787f78daf911a2a07e506c34.tar.zst yuzu-ced130297568cba5787f78daf911a2a07e506c34.zip |
-rw-r--r-- | src/core/hle/service/pctl/pctl_module.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/service/pctl/pctl_module.cpp b/src/core/hle/service/pctl/pctl_module.cpp index be77975ff..240776101 100644 --- a/src/core/hle/service/pctl/pctl_module.cpp +++ b/src/core/hle/service/pctl/pctl_module.cpp @@ -44,7 +44,7 @@ public: {1014, nullptr, "ConfirmPlayableApplicationVideoOld"}, {1015, nullptr, "ConfirmPlayableApplicationVideo"}, {1016, nullptr, "ConfirmShowNewsPermission"}, - {1017, nullptr, "EndFreeCommunication"}, + {1017, &IParentalControlService::EndFreeCommunication, "EndFreeCommunication"}, {1018, &IParentalControlService::IsFreeCommunicationAvailable, "IsFreeCommunicationAvailable"}, {1031, &IParentalControlService::IsRestrictionEnabled, "IsRestrictionEnabled"}, {1032, nullptr, "GetSafetyLevel"}, @@ -236,6 +236,13 @@ private: rb.Push(ResultSuccess); } + void EndFreeCommunication(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service_PCTL, "(STUBBED) called"); + + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(ResultSuccess); + } + void IsFreeCommunicationAvailable(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_PCTL, "(STUBBED) called"); |