diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-10-03 20:05:02 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-10-07 20:57:20 -0600 |
| commit | 8347e5cdb9377eb10dfd3b17aeb45290625687a1 (patch) | |
| tree | c584d085b5363f520b8bebb2ff2eeade9ee62a0d /src/core/hle/service/caps/caps_ss.cpp | |
| parent | dac53b4ba0e705a03f5225fc2603f6b3dd5201d2 (diff) | |
service: caps: Implement album manager and reorganize service
Diffstat (limited to 'src/core/hle/service/caps/caps_ss.cpp')
| -rw-r--r-- | src/core/hle/service/caps/caps_ss.cpp | 5 |
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 |
