summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-12-15 07:48:55 +0100
committerarchshift <admin@archshift.com>2014-12-16 00:32:41 +0100
commit6b51683bb1e8772260a51a1bbf029fce773ecad8 (patch)
treecfb9e24b59883c1c24383094f7198e9fac3dccb9 /src/core/hle/service/service.cpp
parentMerge pull request #276 from lioncash/decrappify (diff)
downloadyuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.gz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.bz2
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.lz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.xz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.zst
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.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 e6973572b..287cd48e1 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -7,6 +7,7 @@
#include "core/hle/service/service.h"
#include "core/hle/service/ac_u.h"
+#include "core/hle/service/am_app.h"
#include "core/hle/service/am_net.h"
#include "core/hle/service/apt_u.h"
#include "core/hle/service/boss_u.h"
@@ -84,6 +85,7 @@ void Init() {
g_manager->AddService(new SRV::Interface);
g_manager->AddService(new AC_U::Interface);
+ g_manager->AddService(new AM_APP::Interface);
g_manager->AddService(new AM_NET::Interface);
g_manager->AddService(new APT_U::Interface);
g_manager->AddService(new BOSS_U::Interface);