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