aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/caps/caps_ss.cpp
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2023-10-10 11:47:13 +0200
committerGitHub <noreply@github.com>2023-10-10 11:47:13 +0200
commit8151a4d30121bb75500c94c1e70d665ba63146c8 (patch)
tree8478fc8d71394061bb204049a0564cd1257bd1f7 /src/core/hle/service/caps/caps_ss.cpp
parent8ac8d703b9af7ebe858cb8957d42eb42c5ffdf75 (diff)
parent8347e5cdb9377eb10dfd3b17aeb45290625687a1 (diff)
Merge pull request #11650 from german77/lle_album
service: am: Add support for LLE Album Applet
Diffstat (limited to 'src/core/hle/service/caps/caps_ss.cpp')
-rw-r--r--src/core/hle/service/caps/caps_ss.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/caps/caps_ss.cpp b/src/core/hle/service/caps/caps_ss.cpp
index 62b9edd41..d0d1b5425 100644
--- a/src/core/hle/service/caps/caps_ss.cpp
+++ b/src/core/hle/service/caps/caps_ss.cpp
@@ -5,7 +5,8 @@
namespace Service::Capture {
-CAPS_SS::CAPS_SS(Core::System& system_) : ServiceFramework{system_, "caps:ss"} {
+IScreenShotService::IScreenShotService(Core::System& system_)
+ : ServiceFramework{system_, "caps:ss"} {
// clang-format off
static const FunctionInfo functions[] = {
{201, nullptr, "SaveScreenShot"},
@@ -21,6 +22,6 @@ CAPS_SS::CAPS_SS(Core::System& system_) : ServiceFramework{system_, "caps:ss"} {
RegisterHandlers(functions);
}
-CAPS_SS::~CAPS_SS() = default;
+IScreenShotService::~IScreenShotService() = default;
} // namespace Service::Capture