aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/caps/caps.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-10-01 12:49:11 -0600
committerNarr the Reg <juangerman-13@hotmail.com>2023-10-02 12:38:03 -0600
commitc3349594403bd7d39a38fef0c2b73c449e651f49 (patch)
treec98d325ac60fc7288b4427a8a00499b3ae066e79 /src/core/hle/service/caps/caps.cpp
parent2fa53ec1d90ab6b2c126fbe42ac73b4ea74cc726 (diff)
service: caps: Partially implement IAlbumAccessorService
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 610fe9940..0dbf04862 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);
- server_manager->RegisterNamedService("caps:a", std::make_shared<CAPS_A>(system));
+ server_manager->RegisterNamedService("caps:a", std::make_shared<IAlbumAccessorService>(system));
server_manager->RegisterNamedService("caps:c", std::make_shared<CAPS_C>(system));
server_manager->RegisterNamedService("caps:u", std::make_shared<CAPS_U>(system));
server_manager->RegisterNamedService("caps:sc", std::make_shared<CAPS_SC>(system));