aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-12-14 22:48:55 -0800
committerGravatar archshift <admin@archshift.com>2014-12-15 15:32:41 -0800
commit6b51683bb1e8772260a51a1bbf029fce773ecad8 (patch)
treecfb9e24b59883c1c24383094f7198e9fac3dccb9 /src/core/hle/service/service.cpp
parent1ee740898ab6951e21fad864a40260c7d3c1027f (diff)
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 e6973572..287cd48e 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);