summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl/pctl_a.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/pctl/pctl_a.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/pctl/pctl_a.cpp b/src/core/hle/service/pctl/pctl_a.cpp
index e3bdd6c47..9fef0bcf1 100644
--- a/src/core/hle/service/pctl/pctl_a.cpp
+++ b/src/core/hle/service/pctl/pctl_a.cpp
@@ -11,8 +11,9 @@ namespace PCTL {
void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
- IPC::RequestBuilder rb{ctx, 1};
+ IPC::RequestBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
+ // TODO(Subv): This should return an IParentalControlService interface.
}
PCTL_A::PCTL_A() : ServiceFramework("pctl:a") {