From f367334aafa1ccf18e3de1d6e1ddd09b3ff346ae Mon Sep 17 00:00:00 2001 From: Shyanne Date: Sat, 14 Mar 2026 13:59:56 -0400 Subject: [PATCH] ??? --- src/Ryujinx.Common/Logging/LogClass.cs | 1 + .../Services/Notification/INotificationSystemEventAccessor.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ryujinx.Common/Logging/LogClass.cs b/src/Ryujinx.Common/Logging/LogClass.cs index 7c6810599..0e02cfcc2 100644 --- a/src/Ryujinx.Common/Logging/LogClass.cs +++ b/src/Ryujinx.Common/Logging/LogClass.cs @@ -51,6 +51,7 @@ namespace Ryujinx.Common.Logging ServiceNgct, ServiceNifm, ServiceNim, + ServiceNotification, ServiceNs, ServiceNsd, ServiceNtc, diff --git a/src/Ryujinx.HLE/HOS/Services/Notification/INotificationSystemEventAccessor.cs b/src/Ryujinx.HLE/HOS/Services/Notification/INotificationSystemEventAccessor.cs index 9298c26bb..1f34d4496 100644 --- a/src/Ryujinx.HLE/HOS/Services/Notification/INotificationSystemEventAccessor.cs +++ b/src/Ryujinx.HLE/HOS/Services/Notification/INotificationSystemEventAccessor.cs @@ -10,7 +10,7 @@ namespace Ryujinx.HLE.HOS.Services.Notification // GetNotificationSendingNotifier() -> nn::notification::server::INotificationSystemEventAccessor public ResultCode GetSystemEvent(ServiceCtx context) { - Logger.Stub?.PrintStub(LogClass.Service); + Logger.Stub?.PrintStub(LogClass.ServiceNotification); return ResultCode.Success; } }