aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apm/apm.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-07 14:57:12 -0400
committerGitHub <noreply@github.com>2018-08-07 14:57:12 -0400
commit2d57cbaec144c1ef9b142863aa7c0eda73ac783a (patch)
tree20daeb9d217732e20f951941b2de2dcc8d55691c /src/core/hle/service/apm/apm.cpp
parent3242e7c16402b39ac0e4b7f044600f60a900bbbf (diff)
parent12ab5a05474bf4bfc70257f604420e5a76927913 (diff)
Merge pull request #960 from lioncash/apm
service/apm: Add the apm:sys service
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