From 12ab5a05474bf4bfc70257f604420e5a76927913 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 7 Aug 2018 10:05:24 -0400 Subject: service/apm: Add the apm:sys service Adds the basic skeleton of the apm:sys service based off the information on Switch Brew. --- src/core/hle/service/apm/apm.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/core/hle/service/apm/apm.cpp') 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(); std::make_shared(module_, "apm")->InstallAsService(service_manager); std::make_shared(module_, "apm:p")->InstallAsService(service_manager); + std::make_shared()->InstallAsService(service_manager); } } // namespace Service::APM -- cgit v1.2.3