summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/glue.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-29 17:02:01 +0100
committerLiam <byteslice@airmail.cc>2024-01-29 17:56:32 +0100
commit41149d061ddee5e9a9dba9d2cfd0199b0c6a09de (patch)
treebd60b9ddfb3ffbb74853047935796a6c406ae708 /src/core/hle/service/glue/glue.cpp
parentMerge pull request #12843 from t895/system-driver-whoops (diff)
downloadyuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.tar
yuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.tar.gz
yuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.tar.bz2
yuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.tar.lz
yuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.tar.xz
yuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.tar.zst
yuzu-41149d061ddee5e9a9dba9d2cfd0199b0c6a09de.zip
Diffstat (limited to 'src/core/hle/service/glue/glue.cpp')
-rw-r--r--src/core/hle/service/glue/glue.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/service/glue/glue.cpp b/src/core/hle/service/glue/glue.cpp
index 10376bfac..ea2843462 100644
--- a/src/core/hle/service/glue/glue.cpp
+++ b/src/core/hle/service/glue/glue.cpp
@@ -31,8 +31,11 @@ void LoopProcess(Core::System& system) {
// Error Context
server_manager->RegisterNamedService("ectx:aw", std::make_shared<ECTX_AW>(system));
- // Notification Services for application
- server_manager->RegisterNamedService("notif:a", std::make_shared<NOTIF_A>(system));
+ // Notification Services
+ server_manager->RegisterNamedService(
+ "notif:a", std::make_shared<INotificationServicesForApplication>(system));
+ server_manager->RegisterNamedService("notif:s",
+ std::make_shared<INotificationServices>(system));
// Time
auto time = std::make_shared<Time::TimeManager>(system);