aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt/apt_s.cpp
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2017-09-30 10:47:42 -0500
committerGitHub <noreply@github.com>2017-09-30 10:47:42 -0500
commit7056b9c46ac0265c4daff1d4908e6f6f78553ceb (patch)
tree964b177eb54edda4ac0065f9444c427ebef2eaff /src/core/hle/service/apt/apt_s.cpp
parentdb752b52e84227696af989c2ec1965020c03fac7 (diff)
parent7096f01c14ff76aefd829ae449a8ab5d474eacf7 (diff)
Merge pull request #2946 from Subv/home_menu_apt
Implement PrepareToStartNewestHomeMenu and fixed an APT regression.
Diffstat (limited to 'src/core/hle/service/apt/apt_s.cpp')
-rw-r--r--src/core/hle/service/apt/apt_s.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/apt/apt_s.cpp b/src/core/hle/service/apt/apt_s.cpp
index ec5668d05..fe1d21fff 100644
--- a/src/core/hle/service/apt/apt_s.cpp
+++ b/src/core/hle/service/apt/apt_s.cpp
@@ -17,7 +17,7 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x00060040, GetAppletInfo, "GetAppletInfo"},
{0x00070000, nullptr, "GetLastSignaledAppletId"},
{0x00080000, nullptr, "CountRegisteredApplet"},
- {0x00090040, nullptr, "IsRegistered"},
+ {0x00090040, IsRegistered, "IsRegistered"},
{0x000A0040, nullptr, "GetAttribute"},
{0x000B0040, InquireNotification, "InquireNotification"},
{0x000C0104, nullptr, "SendParameter"},
@@ -34,7 +34,7 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x00170040, nullptr, "FinishPreloadingLibraryApplet"},
{0x00180040, PrepareToStartLibraryApplet, "PrepareToStartLibraryApplet"},
{0x00190040, nullptr, "PrepareToStartSystemApplet"},
- {0x001A0000, nullptr, "PrepareToStartNewestHomeMenu"},
+ {0x001A0000, PrepareToStartNewestHomeMenu, "PrepareToStartNewestHomeMenu"},
{0x001B00C4, nullptr, "StartApplication"},
{0x001C0000, nullptr, "WakeupApplication"},
{0x001D0000, nullptr, "CancelApplication"},