summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-15 21:33:59 +0100
committerGitHub <noreply@github.com>2023-02-15 21:33:59 +0100
commit0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4 (patch)
tree9d5085147a28898c866b14858f2041deb8497111 /src/core/hle/service/apm
parentMerge pull request #9811 from yuzu-emu/revert-9793-borderless-hidpi (diff)
parentservice: remove deleted services (diff)
downloadyuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.tar
yuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.tar.gz
yuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.tar.bz2
yuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.tar.lz
yuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.tar.xz
yuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.tar.zst
yuzu-0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4.zip
Diffstat (limited to 'src/core/hle/service/apm')
-rw-r--r--src/core/hle/service/apm/apm.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/service/apm/apm.cpp b/src/core/hle/service/apm/apm.cpp
index 8a338d9b1..44b2927a6 100644
--- a/src/core/hle/service/apm/apm.cpp
+++ b/src/core/hle/service/apm/apm.cpp
@@ -14,8 +14,6 @@ void InstallInterfaces(Core::System& system) {
auto module_ = std::make_shared<Module>();
std::make_shared<APM>(system, module_, system.GetAPMController(), "apm")
->InstallAsService(system.ServiceManager());
- std::make_shared<APM>(system, module_, system.GetAPMController(), "apm:p")
- ->InstallAsService(system.ServiceManager());
std::make_shared<APM>(system, module_, system.GetAPMController(), "apm:am")
->InstallAsService(system.ServiceManager());
std::make_shared<APM_Sys>(system, system.GetAPMController())