diff options
| author | Fernando S <fsahmkow27@gmail.com> | 2024-02-02 15:09:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-02 15:09:57 +0100 |
| commit | 3f86b339f3da7eae1f63b36e4eaa9c18f146d368 (patch) | |
| tree | f1b9eaa1a4e5a68ff8feb4ecc73ce7d37abf0efb /src/core/hle/service/glue/glue.cpp | |
| parent | 32d38a5df65ee5a9131ec049f435db9df6051e4c (diff) | |
| parent | 41149d061ddee5e9a9dba9d2cfd0199b0c6a09de (diff) | |
Merge pull request #12845 from liamwhite/notif
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); |
