summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_ae.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-08-05 18:58:20 +0200
committerGitHub <noreply@github.com>2023-08-05 18:58:20 +0200
commit35bdd5fff3670021e09616f71ee3537c12508b5c (patch)
treeee84f7737b015db13fd4a1d98a776cb6d0053965 /src/core/hle/service/am/applet_ae.cpp
parentMerge pull request #11209 from ameerj/subgroup_size_control (diff)
parentservice: am: Fix wrong interface (diff)
downloadyuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.gz
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.bz2
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.lz
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.xz
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.tar.zst
yuzu-35bdd5fff3670021e09616f71ee3537c12508b5c.zip
Diffstat (limited to 'src/core/hle/service/am/applet_ae.cpp')
-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;