summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm/apm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-07 16:05:24 +0200
committerLioncash <mathew1800@gmail.com>2018-08-07 16:05:26 +0200
commit12ab5a05474bf4bfc70257f604420e5a76927913 (patch)
treed8f5648c4bd68b747e1cf8330af4127320e4de2f /src/core/hle/service/apm/apm.cpp
parentMerge pull request #931 from DarkLordZach/nca-as-drd (diff)
downloadyuzu-12ab5a05474bf4bfc70257f604420e5a76927913.tar
yuzu-12ab5a05474bf4bfc70257f604420e5a76927913.tar.gz
yuzu-12ab5a05474bf4bfc70257f604420e5a76927913.tar.bz2
yuzu-12ab5a05474bf4bfc70257f604420e5a76927913.tar.lz
yuzu-12ab5a05474bf4bfc70257f604420e5a76927913.tar.xz
yuzu-12ab5a05474bf4bfc70257f604420e5a76927913.tar.zst
yuzu-12ab5a05474bf4bfc70257f604420e5a76927913.zip
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