summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_ae.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-08-02 21:00:30 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-08-02 21:00:30 +0200
commitdd1cbd9c56ceec0e1819d7373a48dbc63521096e (patch)
treef9dbd0adfff4186fcb5e4fa54aafd37a6280e9b5 /src/core/hle/service/am/applet_ae.cpp
parentMerge pull request #11202 from abouvier/vulkan-config (diff)
downloadyuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.tar
yuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.tar.gz
yuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.tar.bz2
yuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.tar.lz
yuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.tar.xz
yuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.tar.zst
yuzu-dd1cbd9c56ceec0e1819d7373a48dbc63521096e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applet_ae.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/am/applet_ae.cpp b/src/core/hle/service/am/applet_ae.cpp
index 2764f7ceb..ee9d99a54 100644
--- a/src/core/hle/service/am/applet_ae.cpp
+++ b/src/core/hle/service/am/applet_ae.cpp
@@ -26,8 +26,10 @@ public:
{4, &ILibraryAppletProxy::GetDisplayController, "GetDisplayController"},
{10, &ILibraryAppletProxy::GetProcessWindingController, "GetProcessWindingController"},
{11, &ILibraryAppletProxy::GetLibraryAppletCreator, "GetLibraryAppletCreator"},
- {20, &ILibraryAppletProxy::GetApplicationFunctions, "GetApplicationFunctions"},
+ {20, &ILibraryAppletProxy::OpenLibraryAppletSelfAccessor, "OpenLibraryAppletSelfAccessor"},
{21, nullptr, "GetAppletCommonFunctions"},
+ {22, nullptr, "GetHomeMenuFunctions"},
+ {23, nullptr, "GetGlobalStateController"},
{1000, &ILibraryAppletProxy::GetDebugFunctions, "GetDebugFunctions"},
};
// clang-format on
@@ -100,12 +102,12 @@ private:
rb.PushIpcInterface<ILibraryAppletCreator>(system);
}
- void GetApplicationFunctions(HLERequestContext& ctx) {
+ void OpenLibraryAppletSelfAccessor(HLERequestContext& ctx) {
LOG_DEBUG(Service_AM, "called");
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(ResultSuccess);
- rb.PushIpcInterface<IApplicationFunctions>(system);
+ rb.PushIpcInterface<ILibraryAppletSelfAccessor>(system);
}
Nvnflinger::Nvnflinger& nvnflinger;