diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-04 21:20:26 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-04 21:20:26 -0400 |
| commit | a0a605df06e82e13f3529d824a6bdd45839c8705 (patch) | |
| tree | b522eca4059240eefabb845b05e7ce82ac1c54ef /src/core/hle/service/service.cpp | |
| parent | cd96c04339f0b457154ae17810408a9c39959962 (diff) | |
| parent | de7295618182135e11fa968feba79b8a6b72f0b3 (diff) | |
Merge pull request #924 from lioncash/arp
service: Add arp services
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
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); |
