Files
ryujinx/src/Ryujinx.HLE/HOS/Services/Notification/INotificationSystemEventAccessor.cs
Shyanne 33d133e2ac [HLE] Renamed INotificationServicesForSystem and implemented a commands (and stubs)
Should allow Ring Fit to get in-game, needs testing.
2026-03-15 09:49:24 -05:00

18 lines
547 B
C#

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;
}
}
}