From 482dc91dd6491b37d2f517f84de10c1c5dc4af4f Mon Sep 17 00:00:00 2001 From: Valentin Vanelslande Date: Fri, 29 Jun 2018 13:03:16 -0500 Subject: [PATCH] Service/DLP: Fix IsChild --- src/core/hle/service/dlp/dlp_srvr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/dlp/dlp_srvr.cpp b/src/core/hle/service/dlp/dlp_srvr.cpp index bbfe55a65..1b11cdfd2 100644 --- a/src/core/hle/service/dlp/dlp_srvr.cpp +++ b/src/core/hle/service/dlp/dlp_srvr.cpp @@ -12,7 +12,7 @@ namespace Service { namespace DLP { void DLP_SRVR::IsChild(Kernel::HLERequestContext& ctx) { - IPC::RequestParser rp(ctx, 0x0E, 0, 0); + IPC::RequestParser rp(ctx, 0x0E, 1, 0); IPC::RequestBuilder rb = rp.MakeBuilder(2, 0); rb.Push(RESULT_SUCCESS);