aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/glue/glue.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-12-07 23:31:44 -0800
committerGitHub <noreply@github.com>2021-12-07 23:31:44 -0800
commit5f7e73c74a4a15b7de907900e658b73ce37e743d (patch)
tree0d2eacb2472f9cd6638df461dc21be269a782bc7 /src/core/hle/service/glue/glue.cpp
parentf6e8e61e3ef3bbac1f78e4bedf7383474da39adb (diff)
parentac1bfe228f688bb8eef38bdaf26011008891afdf (diff)
Merge pull request #7525 from german77/notifa
service/notif: Add notif:a and stub ListAlarmSettings, Initialize
Diffstat (limited to 'src/core/hle/service/glue/glue.cpp')
-rw-r--r--src/core/hle/service/glue/glue.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/glue/glue.cpp b/src/core/hle/service/glue/glue.cpp
index a08dc9758..b24d469cf 100644
--- a/src/core/hle/service/glue/glue.cpp
+++ b/src/core/hle/service/glue/glue.cpp
@@ -8,6 +8,7 @@
#include "core/hle/service/glue/bgtc.h"
#include "core/hle/service/glue/ectx.h"
#include "core/hle/service/glue/glue.h"
+#include "core/hle/service/glue/notif.h"
namespace Service::Glue {
@@ -24,6 +25,9 @@ void InstallInterfaces(Core::System& system) {
// Error Context
std::make_shared<ECTX_AW>(system)->InstallAsService(system.ServiceManager());
+
+ // Notification Services for application
+ std::make_shared<NOTIF_A>(system)->InstallAsService(system.ServiceManager());
}
} // namespace Service::Glue