This commit is contained in:
Shyanne
2026-03-14 13:59:56 -04:00
parent 776dfbb7b3
commit f367334aaf
2 changed files with 2 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ namespace Ryujinx.Common.Logging
ServiceNgct, ServiceNgct,
ServiceNifm, ServiceNifm,
ServiceNim, ServiceNim,
ServiceNotification,
ServiceNs, ServiceNs,
ServiceNsd, ServiceNsd,
ServiceNtc, ServiceNtc,

View File

@@ -10,7 +10,7 @@ namespace Ryujinx.HLE.HOS.Services.Notification
// GetNotificationSendingNotifier() -> nn::notification::server::INotificationSystemEventAccessor // GetNotificationSendingNotifier() -> nn::notification::server::INotificationSystemEventAccessor
public ResultCode GetSystemEvent(ServiceCtx context) public ResultCode GetSystemEvent(ServiceCtx context)
{ {
Logger.Stub?.PrintStub(LogClass.Service); Logger.Stub?.PrintStub(LogClass.ServiceNotification);
return ResultCode.Success; return ResultCode.Success;
} }
} }