diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs b/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs index 59f76e93..991f01c3 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/IManagerRootService.cs @@ -1,23 +1,12 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - namespace Ryujinx.HLE.HOS.Services.Vi { [Service("vi:m")] class IManagerRootService : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IManagerRootService(ServiceCtx context) - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - { 2, GetDisplayService } - }; - } + public IManagerRootService(ServiceCtx context) { } + [Command(2)] + // GetDisplayService(u32) -> object<nn::visrv::sf::IApplicationDisplayService> public long GetDisplayService(ServiceCtx context) { int serviceType = context.RequestData.ReadInt32(); |
