diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Es/IETicketService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Es/IETicketService.cs | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs b/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs index 4aa0a7fa..f8ecb85c 100644 --- a/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs +++ b/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs @@ -1,21 +1,8 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - -namespace Ryujinx.HLE.HOS.Services.Es +namespace Ryujinx.HLE.HOS.Services.Es { [Service("es")] class IeTicketService : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IeTicketService(ServiceCtx context) - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - //... - }; - } + public IeTicketService(ServiceCtx context) { } } }
\ No newline at end of file |
