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; }