summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-07-12 03:37:47 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-07-28 06:48:42 +0200
commitf7d59f3e0e63a33e758b92a857ca4add0a8ee524 (patch)
tree4905a67f1571b61f949331a06a49dcbf356e7774 /src/core/hle/service/service.cpp
parentservice/sockets: Add worker pool abstraction (diff)
downloadyuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.tar
yuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.tar.gz
yuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.tar.bz2
yuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.tar.lz
yuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.tar.xz
yuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.tar.zst
yuzu-f7d59f3e0e63a33e758b92a857ca4add0a8ee524.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);