aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/caps/caps.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-10-17 23:05:44 -0600
committerNarr the Reg <juangerman-13@hotmail.com>2023-10-23 10:18:22 -0600
commit897b411ae76a817421453120ca0d0812e3de233f (patch)
treec4d69fd35790e21605c6382b29107186e5e2a6a1 /src/core/hle/service/caps/caps.cpp
parent94836ba3b181370f6e96ae72bf494cd6db16a7b1 (diff)
service: caps: Implement SaveScreenShotEx0 and variants
Diffstat (limited to 'src/core/hle/service/caps/caps.cpp')
-rw-r--r--src/core/hle/service/caps/caps.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/service/caps/caps.cpp b/src/core/hle/service/caps/caps.cpp
index 31dd98140..cd1dfe993 100644
--- a/src/core/hle/service/caps/caps.cpp
+++ b/src/core/hle/service/caps/caps.cpp
@@ -25,11 +25,12 @@ void LoopProcess(Core::System& system) {
server_manager->RegisterNamedService(
"caps:u", std::make_shared<IAlbumApplicationService>(system, album_manager));
- server_manager->RegisterNamedService("caps:ss", std::make_shared<IScreenShotService>(system));
+ server_manager->RegisterNamedService(
+ "caps:ss", std::make_shared<IScreenShotService>(system, album_manager));
server_manager->RegisterNamedService("caps:sc",
std::make_shared<IScreenShotControlService>(system));
- server_manager->RegisterNamedService("caps:su",
- std::make_shared<IScreenShotApplicationService>(system));
+ server_manager->RegisterNamedService(
+ "caps:su", std::make_shared<IScreenShotApplicationService>(system, album_manager));
ServerManager::RunServer(std::move(server_manager));
}