summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/glue.cpp
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2024-02-02 15:09:57 +0100
committerGitHub <noreply@github.com>2024-02-02 15:09:57 +0100
commit3f86b339f3da7eae1f63b36e4eaa9c18f146d368 (patch)
treef1b9eaa1a4e5a68ff8feb4ecc73ce7d37abf0efb /src/core/hle/service/glue/glue.cpp
parentMerge pull request #12887 from abouvier/cmake-vulkan-headers (diff)
parentnotif: rewrite for new IPC (diff)
downloadyuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.tar
yuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.tar.gz
yuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.tar.bz2
yuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.tar.lz
yuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.tar.xz
yuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.tar.zst
yuzu-3f86b339f3da7eae1f63b36e4eaa9c18f146d368.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);