diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs index 6523aa63..6ed7ec3f 100644 --- a/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs +++ b/Ryujinx.HLE/HOS/Services/Bcat/IServiceCreator.cs @@ -3,13 +3,17 @@ using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Bcat { + [Service("bcat:a")] + [Service("bcat:m")] + [Service("bcat:u")] + [Service("bcat:s")] class IServiceCreator : IpcService { private Dictionary<int, ServiceProcessRequest> _commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - public IServiceCreator() + public IServiceCreator(ServiceCtx context) { _commands = new Dictionary<int, ServiceProcessRequest> { |
