From d0bf7df5ba11f19314b5b08d264de79bce691a45 Mon Sep 17 00:00:00 2001 From: mailwl Date: Tue, 31 Jan 2017 12:16:58 +0300 Subject: HLE/Applets: Stub Mint (eShop) Applet (#2463) This allows Phoenix Wright - Dual Destinies to boot. --- src/core/hle/applets/applet.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/hle/applets/applet.cpp') diff --git a/src/core/hle/applets/applet.cpp b/src/core/hle/applets/applet.cpp index 645b2d5fe..9c43ed2fd 100644 --- a/src/core/hle/applets/applet.cpp +++ b/src/core/hle/applets/applet.cpp @@ -12,6 +12,7 @@ #include "core/hle/applets/applet.h" #include "core/hle/applets/erreula.h" #include "core/hle/applets/mii_selector.h" +#include "core/hle/applets/mint.h" #include "core/hle/applets/swkbd.h" #include "core/hle/result.h" #include "core/hle/service/apt/apt.h" @@ -56,6 +57,10 @@ ResultCode Applet::Create(Service::APT::AppletId id) { case Service::APT::AppletId::Error2: applets[id] = std::make_shared(id); break; + case Service::APT::AppletId::Mint: + case Service::APT::AppletId::Mint2: + applets[id] = std::make_shared(id); + break; default: LOG_ERROR(Service_APT, "Could not create applet %u", id); // TODO(Subv): Find the right error code -- cgit v1.2.3