summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar archshift2014-12-14 22:48:55 -0800
committerGravatar archshift2014-12-15 15:32:41 -0800
commit6b51683bb1e8772260a51a1bbf029fce773ecad8 (patch)
treecfb9e24b59883c1c24383094f7198e9fac3dccb9 /src/core/hle/service/service.cpp
parentMerge pull request #276 from lioncash/decrappify (diff)
downloadyuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.gz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.tar.xz
yuzu-6b51683bb1e8772260a51a1bbf029fce773ecad8.zip
Added am:app service stub.
Apparently nothing at all is known about this service...
Diffstat (limited to 'src/core/hle/service/service.cpp')
-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 @@
7 7
8#include "core/hle/service/service.h" 8#include "core/hle/service/service.h"
9#include "core/hle/service/ac_u.h" 9#include "core/hle/service/ac_u.h"
10#include "core/hle/service/am_app.h"
10#include "core/hle/service/am_net.h" 11#include "core/hle/service/am_net.h"
11#include "core/hle/service/apt_u.h" 12#include "core/hle/service/apt_u.h"
12#include "core/hle/service/boss_u.h" 13#include "core/hle/service/boss_u.h"
@@ -84,6 +85,7 @@ void Init() {
84 85
85 g_manager->AddService(new SRV::Interface); 86 g_manager->AddService(new SRV::Interface);
86 g_manager->AddService(new AC_U::Interface); 87 g_manager->AddService(new AC_U::Interface);
88 g_manager->AddService(new AM_APP::Interface);
87 g_manager->AddService(new AM_NET::Interface); 89 g_manager->AddService(new AM_NET::Interface);
88 g_manager->AddService(new APT_U::Interface); 90 g_manager->AddService(new APT_U::Interface);
89 g_manager->AddService(new BOSS_U::Interface); 91 g_manager->AddService(new BOSS_U::Interface);