diff options
| author | bunnei <bunneidev@gmail.com> | 2020-09-05 22:40:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-05 22:40:59 -0400 |
| commit | e126021ffe6f47e8f4603643b07726e4896ed007 (patch) | |
| tree | 4b4738bfe3ee520f8c72afb57fad79fc90832936 /src/core/hle/service/service.cpp | |
| parent | 80a56e8893d7c1118655e176b2a0b5f2c6f48f2b (diff) | |
| parent | bc699ace15fc2dd2cc7ff022fa9ec6031ba09d13 (diff) | |
Merge pull request #4397 from ReinUsesLisp/bsd
services: Implement most of bsd:s and GetCurrentIpAddress from nifm
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
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); |
