aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apm/apm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-07 10:05:24 -0400
committerLioncash <mathew1800@gmail.com>2018-08-07 10:05:26 -0400
commit12ab5a05474bf4bfc70257f604420e5a76927913 (patch)
treed8f5648c4bd68b747e1cf8330af4127320e4de2f /src/core/hle/service/apm/apm.cpp
parent826b1394e85720b62938c5f7af4a876e203316af (diff)
service/apm: Add the apm:sys service
Adds the basic skeleton of the apm:sys service based off the information on Switch Brew.
Diffstat (limited to 'src/core/hle/service/apm/apm.cpp')
-rw-r--r--src/core/hle/service/apm/apm.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/apm/apm.cpp b/src/core/hle/service/apm/apm.cpp
index 7a185c6c8..4109cb7f7 100644
--- a/src/core/hle/service/apm/apm.cpp
+++ b/src/core/hle/service/apm/apm.cpp
@@ -13,6 +13,7 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
auto module_ = std::make_shared<Module>();
std::make_shared<APM>(module_, "apm")->InstallAsService(service_manager);
std::make_shared<APM>(module_, "apm:p")->InstallAsService(service_manager);
+ std::make_shared<APM_Sys>()->InstallAsService(service_manager);
}
} // namespace Service::APM