summaryrefslogtreecommitdiff
path: root/src/core/hle/service/pctl
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-24 10:49:29 -0400
committerGravatar Lioncash2018-04-24 12:01:30 -0400
commit13f9cf2bd00c79a52cc8b8148db8890ec28fe059 (patch)
treea379f0a0c6e58ba3974151f6d20788123e53a7de /src/core/hle/service/pctl
parentnvflinger: Move logging macros over to new fmt-compatible ones (diff)
downloadyuzu-13f9cf2bd00c79a52cc8b8148db8890ec28fe059.tar.gz
yuzu-13f9cf2bd00c79a52cc8b8148db8890ec28fe059.tar.xz
yuzu-13f9cf2bd00c79a52cc8b8148db8890ec28fe059.zip
pctl: Move logging macros over to new fmt-compatible ones
Diffstat (limited to 'src/core/hle/service/pctl')
-rw-r--r--src/core/hle/service/pctl/pctl_a.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/pctl/pctl_a.cpp b/src/core/hle/service/pctl/pctl_a.cpp
index 9fb4628ad..24a6cf310 100644
--- a/src/core/hle/service/pctl/pctl_a.cpp
+++ b/src/core/hle/service/pctl/pctl_a.cpp
@@ -113,7 +113,7 @@ void PCTL_A::CreateService(Kernel::HLERequestContext& ctx) {
113 IPC::ResponseBuilder rb{ctx, 2, 0, 1}; 113 IPC::ResponseBuilder rb{ctx, 2, 0, 1};
114 rb.Push(RESULT_SUCCESS); 114 rb.Push(RESULT_SUCCESS);
115 rb.PushIpcInterface<IParentalControlService>(); 115 rb.PushIpcInterface<IParentalControlService>();
116 LOG_DEBUG(Service_PCTL, "called"); 116 NGLOG_DEBUG(Service_PCTL, "called");
117} 117}
118 118
119PCTL_A::PCTL_A() : ServiceFramework("pctl:a") { 119PCTL_A::PCTL_A() : ServiceFramework("pctl:a") {