From f3d22ccde4b2dee8e24d152aff7033379846252a Mon Sep 17 00:00:00 2001 From: wwylele Date: Mon, 19 Feb 2018 22:30:27 +0200 Subject: [PATCH] APT: don't skip translation parameters --- src/core/hle/service/apt/apt.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/hle/service/apt/apt.cpp b/src/core/hle/service/apt/apt.cpp index 2cd7af9a3..77da3ae7e 100644 --- a/src/core/hle/service/apt/apt.cpp +++ b/src/core/hle/service/apt/apt.cpp @@ -202,7 +202,8 @@ void Module::Interface::GetSharedFont(Kernel::HLERequestContext& ctx) { } else { LOG_ERROR(Service_APT, "shared font file missing - go dump it from your 3ds"); rb.Push(-1); // TODO: Find the right error code - rb.Skip(1 + 2, true); + rb.Push(0); + rb.PushCopyObjects(nullptr); Core::System::GetInstance().SetStatus(Core::System::ResultStatus::ErrorSharedFont); return; }