diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-10-12 17:17:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 17:17:35 +0200 |
commit | 65d3300875e1523efaf02cd78a3392e2dc0ef743 (patch) | |
tree | c2c1400aad8753d5dcdca0cf191afaa1d9811bb5 /src/core/hle/service/caps/caps.cpp | |
parent | Merge pull request #11751 from Kelebek1/transition_msaa_image (diff) | |
parent | service: caps: Fix GetAlbumFileList3AaeAruid and GetAlbumFileList0AafeAruidDeprecated (diff) | |
download | yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.tar yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.tar.gz yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.tar.bz2 yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.tar.lz yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.tar.xz yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.tar.zst yuzu-65d3300875e1523efaf02cd78a3392e2dc0ef743.zip |
Diffstat (limited to 'src/core/hle/service/caps/caps.cpp')
-rw-r--r-- | src/core/hle/service/caps/caps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/caps/caps.cpp b/src/core/hle/service/caps/caps.cpp index 286f9fd10..31dd98140 100644 --- a/src/core/hle/service/caps/caps.cpp +++ b/src/core/hle/service/caps/caps.cpp @@ -16,7 +16,7 @@ namespace Service::Capture { void LoopProcess(Core::System& system) { auto server_manager = std::make_unique<ServerManager>(system); - auto album_manager = std::make_shared<AlbumManager>(); + auto album_manager = std::make_shared<AlbumManager>(system); server_manager->RegisterNamedService( "caps:a", std::make_shared<IAlbumAccessorService>(system, album_manager)); |