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