diff options
| author | Franco M <francomaro@gmail.com> | 2023-10-26 19:11:15 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-26 19:11:15 -0300 |
| commit | b5415b687203599fe18e2cefc78700e4c6f2ae7c (patch) | |
| tree | ddd4c82cab9e367cdcf2bbf4a1d444f85ed0b02e /src/core/hle/service/caps/caps.cpp | |
| parent | b76a1d987ff83b831a19a0c19f9fcd96c504c077 (diff) | |
| parent | 43be2bfe332d5537041262eb08037993239eaf5f (diff) | |
Merge branch 'yuzu-emu:master' into new-shortcut
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)); } |
