diff options
| author | 2023-02-14 12:38:21 -0500 | |
|---|---|---|
| committer | 2023-02-14 12:38:21 -0500 | |
| commit | 79fbdfca170a8eec71f8e037df9132cfc6fc5f44 (patch) | |
| tree | c4600d28974e8e75596570511d1767731fec3ab3 /src/core/hle/service/apm | |
| parent | Merge pull request #9795 from Kelebek1/biquad_fix (diff) | |
| download | yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.gz yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.xz yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.zip | |
service: remove deleted services
Diffstat (limited to 'src/core/hle/service/apm')
| -rw-r--r-- | src/core/hle/service/apm/apm.cpp | 2 |
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) { | |||
| 14 | auto module_ = std::make_shared<Module>(); | 14 | auto module_ = std::make_shared<Module>(); |
| 15 | std::make_shared<APM>(system, module_, system.GetAPMController(), "apm") | 15 | std::make_shared<APM>(system, module_, system.GetAPMController(), "apm") |
| 16 | ->InstallAsService(system.ServiceManager()); | 16 | ->InstallAsService(system.ServiceManager()); |
| 17 | std::make_shared<APM>(system, module_, system.GetAPMController(), "apm:p") | ||
| 18 | ->InstallAsService(system.ServiceManager()); | ||
| 19 | std::make_shared<APM>(system, module_, system.GetAPMController(), "apm:am") | 17 | std::make_shared<APM>(system, module_, system.GetAPMController(), "apm:am") |
| 20 | ->InstallAsService(system.ServiceManager()); | 18 | ->InstallAsService(system.ServiceManager()); |
| 21 | std::make_shared<APM_Sys>(system, system.GetAPMController()) | 19 | std::make_shared<APM_Sys>(system, system.GetAPMController()) |