summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set_cal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/set/set_cal.cpp')
-rw-r--r--src/core/hle/service/set/set_cal.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/set/set_cal.cpp b/src/core/hle/service/set/set_cal.cpp
index d2c0d536f..3dbcafde2 100644
--- a/src/core/hle/service/set/set_cal.cpp
+++ b/src/core/hle/service/set/set_cal.cpp
@@ -5,7 +5,8 @@
namespace Service::Set {
-SET_CAL::SET_CAL(Core::System& system_) : ServiceFramework{system_, "set:cal"} {
+IFactorySettingsServer::IFactorySettingsServer(Core::System& system_)
+ : ServiceFramework{system_, "set:cal"} {
// clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "GetBluetoothBdAddress"},
@@ -57,6 +58,6 @@ SET_CAL::SET_CAL(Core::System& system_) : ServiceFramework{system_, "set:cal"} {
RegisterHandlers(functions);
}
-SET_CAL::~SET_CAL() = default;
+IFactorySettingsServer::~IFactorySettingsServer() = default;
} // namespace Service::Set