summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-10-12 02:41:56 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-10-12 04:01:33 +0200
commitfe04a7523a1f06f62fc1cb2337d7718664aaae2f (patch)
tree0053f7c8db1dd62ea5d148ce21e531acdd595a21 /src/core/hle/service/caps/caps.cpp
parentMerge pull request #11720 from lat9nq/dbg-syms (diff)
downloadyuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.tar
yuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.tar.gz
yuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.tar.bz2
yuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.tar.lz
yuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.tar.xz
yuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.tar.zst
yuzu-fe04a7523a1f06f62fc1cb2337d7718664aaae2f.zip
Diffstat (limited to 'src/core/hle/service/caps/caps.cpp')
-rw-r--r--src/core/hle/service/caps/caps.cpp2
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));