diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Am/IGlobalStateController.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Am/IGlobalStateController.cs | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/IGlobalStateController.cs b/Ryujinx.HLE/HOS/Services/Am/IGlobalStateController.cs index 634f65eb..9172e094 100644 --- a/Ryujinx.HLE/HOS/Services/Am/IGlobalStateController.cs +++ b/Ryujinx.HLE/HOS/Services/Am/IGlobalStateController.cs @@ -1,20 +1,7 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - namespace Ryujinx.HLE.HOS.Services.Am { class IGlobalStateController : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IGlobalStateController() - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - // ... - }; - } + public IGlobalStateController() { } } }
\ No newline at end of file |
