summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-09-06 04:40:59 +0200
committerGitHub <noreply@github.com>2020-09-06 04:40:59 +0200
commite126021ffe6f47e8f4603643b07726e4896ed007 (patch)
tree4b4738bfe3ee520f8c72afb57fad79fc90832936 /src/core/hle/service/service.cpp
parentMerge pull request #4629 from Morph1984/mergesinglejoyasdualjoy-impl (diff)
parentservice/bsd: Handle Poll with no entries accurately (diff)
downloadyuzu-e126021ffe6f47e8f4603643b07726e4896ed007.tar
yuzu-e126021ffe6f47e8f4603643b07726e4896ed007.tar.gz
yuzu-e126021ffe6f47e8f4603643b07726e4896ed007.tar.bz2
yuzu-e126021ffe6f47e8f4603643b07726e4896ed007.tar.lz
yuzu-e126021ffe6f47e8f4603643b07726e4896ed007.tar.xz
yuzu-e126021ffe6f47e8f4603643b07726e4896ed007.tar.zst
yuzu-e126021ffe6f47e8f4603643b07726e4896ed007.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index fa5347af9..538f28495 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -246,7 +246,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system) {
PSC::InstallInterfaces(*sm);
PSM::InstallInterfaces(*sm);
Set::InstallInterfaces(*sm);
- Sockets::InstallInterfaces(*sm);
+ Sockets::InstallInterfaces(*sm, system);
SPL::InstallInterfaces(*sm);
SSL::InstallInterfaces(*sm);
Time::InstallInterfaces(system);