summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 03:32:59 +0100
committerbunnei <bunneidev@gmail.com>2018-01-17 03:34:27 +0100
commit4b156d2e6418d619bdd7610b9827af09bfbef086 (patch)
treebdf507d4424cae7e4dd0766b7b678cbdaea03042 /src/core/hle/service/service.cpp
parentMerge pull request #55 from bunnei/subv-improvements (diff)
downloadyuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.tar
yuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.tar.gz
yuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.tar.bz2
yuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.tar.lz
yuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.tar.xz
yuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.tar.zst
yuzu-4b156d2e6418d619bdd7610b9827af09bfbef086.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 44623d40f..fe76b381c 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -14,6 +14,7 @@
#include "core/hle/kernel/process.h"
#include "core/hle/kernel/server_port.h"
#include "core/hle/kernel/thread.h"
+#include "core/hle/service/acc/acc.h"
#include "core/hle/service/am/am.h"
#include "core/hle/service/aoc/aoc_u.h"
#include "core/hle/service/apm/apm.h"
@@ -164,6 +165,7 @@ void Init() {
SM::g_service_manager = std::make_shared<SM::ServiceManager>();
SM::ServiceManager::InstallInterfaces(SM::g_service_manager);
+ Account::InstallInterfaces(*SM::g_service_manager);
AM::InstallInterfaces(*SM::g_service_manager);
AOC::InstallInterfaces(*SM::g_service_manager);
APM::InstallInterfaces(*SM::g_service_manager);