summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-30 19:06:52 +0200
committerGitHub <noreply@github.com>2018-07-30 19:06:52 +0200
commitc5fa3560a63e82babea22b148128f1e70fd54d06 (patch)
treebd86c30123f70ffe6d8fef6df3e8d166a585f33f /src/core/hle/service/service.cpp
parentMerge pull request #856 from lioncash/btm (diff)
parentservice: Add wlan services (diff)
downloadyuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar
yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.gz
yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.bz2
yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.lz
yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.xz
yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.zst
yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 61a81f564..3cad64837 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -56,6 +56,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;
@@ -227,12 +228,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");
}