summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-04 23:54:54 +0200
committerLioncash <mathew1800@gmail.com>2018-08-05 00:01:12 +0200
commitde7295618182135e11fa968feba79b8a6b72f0b3 (patch)
tree517b07405c3d6d134e7ca6adf733b91e5e999dc9 /src/core/hle/service/service.cpp
parentMerge pull request #849 from DarkLordZach/xci (diff)
downloadyuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.gz
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.bz2
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.lz
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.xz
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.zst
yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.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 61e0c34a0..31ea79773 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -19,6 +19,7 @@
#include "core/hle/service/am/am.h"
#include "core/hle/service/aoc/aoc_u.h"
#include "core/hle/service/apm/apm.h"
+#include "core/hle/service/arp/arp.h"
#include "core/hle/service/audio/audio.h"
#include "core/hle/service/bcat/bcat.h"
#include "core/hle/service/bpc/bpc.h"
@@ -207,6 +208,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
AM::InstallInterfaces(*sm, nv_flinger);
AOC::InstallInterfaces(*sm);
APM::InstallInterfaces(*sm);
+ ARP::InstallInterfaces(*sm);
Audio::InstallInterfaces(*sm);
BCAT::InstallInterfaces(*sm);
BPC::InstallInterfaces(*sm);