diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-29 03:20:43 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-29 03:54:55 +0200 |
commit | 6ea416091eb7f0adbf61fd43385775b87b746084 (patch) | |
tree | c272a4ec120470197544b3a35b7b785244f55ab6 /src/core/hle/service/service.cpp | |
parent | Merge pull request #847 from lioncash/ncm (diff) | |
download | yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.gz yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.bz2 yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.lz yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.xz yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.zst yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.zip |
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 5180a0c93..53236ef53 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -55,6 +55,7 @@ #include "core/hle/service/ssl/ssl.h" #include "core/hle/service/time/time.h" #include "core/hle/service/vi/vi.h" +#include "core/hle/service/wlan/wlan.h" using Kernel::ClientPort; using Kernel::ServerPort; @@ -225,12 +226,13 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { PCTL::InstallInterfaces(*sm); PlayReport::InstallInterfaces(*sm); PM::InstallInterfaces(*sm); + Set::InstallInterfaces(*sm); Sockets::InstallInterfaces(*sm); SPL::InstallInterfaces(*sm); SSL::InstallInterfaces(*sm); Time::InstallInterfaces(*sm); VI::InstallInterfaces(*sm, nv_flinger); - Set::InstallInterfaces(*sm); + WLAN::InstallInterfaces(*sm); LOG_DEBUG(Service, "initialized OK"); } |