diff options
| author | german77 <juangerman-13@hotmail.com> | 2023-10-17 23:05:44 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-10-23 10:18:22 -0600 |
| commit | 897b411ae76a817421453120ca0d0812e3de233f (patch) | |
| tree | c4d69fd35790e21605c6382b29107186e5e2a6a1 /src/core/hle/service/caps/caps.cpp | |
| parent | 94836ba3b181370f6e96ae72bf494cd6db16a7b1 (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.cpp | 7 |
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)); } |
