aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/ServiceFactory.cs
diff options
context:
space:
mode:
authorThomas Guillemard <thog@protonmail.com>2018-10-21 00:08:58 +0200
committerAc_K <Acoustik666@gmail.com>2018-10-20 22:08:58 +0000
commitb5f7d8106b20a1f8abb1f7dbc2c48f1da4648aab (patch)
treea7f7d96cadd0c376a08042c3321cd6928ce408b9 /Ryujinx.HLE/HOS/Services/ServiceFactory.cs
parent2cb8541462e3cc31e9a4ffe63f430168c0c747d1 (diff)
Complete rewrite of bsd IClient (#460)
This should provide accurate behaviours. This implementation has been tested with ftpd and libtransistor bsd tests. This implementation lacks OOB support.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/ServiceFactory.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/ServiceFactory.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/ServiceFactory.cs b/Ryujinx.HLE/HOS/Services/ServiceFactory.cs
index f701dd05..29f1c0e7 100644
--- a/Ryujinx.HLE/HOS/Services/ServiceFactory.cs
+++ b/Ryujinx.HLE/HOS/Services/ServiceFactory.cs
@@ -72,10 +72,10 @@ namespace Ryujinx.HLE.HOS.Services
return new Bcat.IServiceCreator();
case "bsd:s":
- return new IClient();
+ return new IClient(true);
case "bsd:u":
- return new IClient();
+ return new IClient(false);
case "caps:a":
return new IAlbumAccessorService();