[HLE] Renamed INotificationServicesForSystem and implemented a commands (and stubs)

Should allow Ring Fit to get in-game, needs testing.
This commit is contained in:
Shyanne
2026-03-14 02:40:18 -04:00
committed by sh0inx
parent b36667e216
commit 33d133e2ac
3 changed files with 43 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
using Ryujinx.Common.Logging;
namespace Ryujinx.HLE.HOS.Services.Notification
{
class INotificationSystemEventAccessor : IpcService
{
public INotificationSystemEventAccessor(ServiceCtx context) { }
[CommandCmif(0)] // 9.0.0+
// GetNotificationSendingNotifier() -> nn::notification::server::INotificationSystemEventAccessor
public ResultCode GetSystemEvent(ServiceCtx context)
{
Logger.Stub?.PrintStub(LogClass.Service);
return ResultCode.Success;
}
}
}