summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 03:01:19 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 15:18:29 +0100
commitbca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd (patch)
treecdb54c90d4ef48e0efc9c4d47d49fd64ea3d7875 /src/core/hle/service/am/am.cpp
parentam: rewrite IApplicationCreator (diff)
downloadyuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.gz
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.bz2
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.lz
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.xz
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.tar.zst
yuzu-bca698a17ae4b39106cd7f8c7eef06ccc7c8d6dd.zip
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
-rw-r--r--src/core/hle/service/am/am.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index da0f9e3df..9dc710ba9 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -2,11 +2,8 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include "core/hle/service/am/am.h"
-#include "core/hle/service/am/idle.h"
-#include "core/hle/service/am/omm.h"
#include "core/hle/service/am/service/all_system_applet_proxies_service.h"
#include "core/hle/service/am/service/application_proxy_service.h"
-#include "core/hle/service/am/spsm.h"
#include "core/hle/service/server_manager.h"
namespace Service::AM {
@@ -18,9 +15,6 @@ void LoopProcess(Nvnflinger::Nvnflinger& nvnflinger, Core::System& system) {
"appletAE", std::make_shared<IAllSystemAppletProxiesService>(system, nvnflinger));
server_manager->RegisterNamedService(
"appletOE", std::make_shared<IApplicationProxyService>(system, nvnflinger));
- server_manager->RegisterNamedService("idle:sys", std::make_shared<IdleSys>(system));
- server_manager->RegisterNamedService("omm", std::make_shared<OMM>(system));
- server_manager->RegisterNamedService("spsm", std::make_shared<SPSM>(system));
ServerManager::RunServer(std::move(server_manager));
}