summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_ae.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-21 22:40:17 +0200
committerLioncash <mathew1800@gmail.com>2018-10-21 22:40:20 +0200
commitedb1c36a871154252e0c8a639083ec25c57395ef (patch)
tree1b89cb4f6e62aaeba33cb7873f12537882310b10 /src/core/hle/service/am/applet_ae.cpp
parentprepo: Update service function table. (diff)
downloadyuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.gz
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.bz2
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.lz
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.xz
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.zst
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.zip
Diffstat (limited to 'src/core/hle/service/am/applet_ae.cpp')
-rw-r--r--src/core/hle/service/am/applet_ae.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applet_ae.cpp b/src/core/hle/service/am/applet_ae.cpp
index 4296c255e..68ea778e8 100644
--- a/src/core/hle/service/am/applet_ae.cpp
+++ b/src/core/hle/service/am/applet_ae.cpp
@@ -211,6 +211,7 @@ void AppletAE::OpenLibraryAppletProxyOld(Kernel::HLERequestContext& ctx) {
AppletAE::AppletAE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger)
: ServiceFramework("appletAE"), nvflinger(std::move(nvflinger)) {
+ // clang-format off
static const FunctionInfo functions[] = {
{100, &AppletAE::OpenSystemAppletProxy, "OpenSystemAppletProxy"},
{200, &AppletAE::OpenLibraryAppletProxyOld, "OpenLibraryAppletProxyOld"},
@@ -218,7 +219,10 @@ AppletAE::AppletAE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger)
{300, nullptr, "OpenOverlayAppletProxy"},
{350, nullptr, "OpenSystemApplicationProxy"},
{400, nullptr, "CreateSelfLibraryAppletCreatorForDevelop"},
+ {401, nullptr, "GetSystemAppletControllerForDebug"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}