diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs b/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs index de880153..48cb9cab 100644 --- a/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs +++ b/Ryujinx.HLE/HOS/Services/Caps/IAlbumControlService.cs @@ -4,5 +4,12 @@ namespace Ryujinx.HLE.HOS.Services.Caps class IAlbumControlService : IpcService { public IAlbumControlService(ServiceCtx context) { } + + [Command(33)] // 7.0.0+ + // SetShimLibraryVersion(pid, u64, nn::applet::AppletResourceUserId) + public ResultCode SetShimLibraryVersion(ServiceCtx context) + { + return context.Device.System.CaptureManager.SetShimLibraryVersion(context); + } } }
\ No newline at end of file |