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