diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs b/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs index 0d067b16..64bb6745 100644 --- a/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs +++ b/Ryujinx.HLE/HOS/Services/Am/IAllSystemAppletProxiesService.cs @@ -3,13 +3,14 @@ using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Am { + [Service("appletAE")] class IAllSystemAppletProxiesService : IpcService { private Dictionary<int, ServiceProcessRequest> _commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - public IAllSystemAppletProxiesService() + public IAllSystemAppletProxiesService(ServiceCtx context) { _commands = new Dictionary<int, ServiceProcessRequest> { |
