diff options
| author | Liam <byteslice@airmail.cc> | 2024-01-29 11:02:01 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-01-29 11:56:32 -0500 |
| commit | 41149d061ddee5e9a9dba9d2cfd0199b0c6a09de (patch) | |
| tree | bd60b9ddfb3ffbb74853047935796a6c406ae708 /src/core/hle/service/glue/glue.cpp | |
| parent | ba4cee1812772b663b823b071e9396c05df06c12 (diff) | |
notif: rewrite for new IPC
Diffstat (limited to 'src/core/hle/service/glue/glue.cpp')
| -rw-r--r-- | src/core/hle/service/glue/glue.cpp | 7 |
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); |
