aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-12 01:15:39 -0300
committergdkchan <gab.dark.100@gmail.com>2018-03-12 01:15:39 -0300
commit8cb23c133baf2a371f6dfaaba0c7db7216c2efd1 (patch)
tree494fd4ffcddc295519d825e1bf692143a3991425
parent7a27990faa557c5c93f52e5cb082d551ad119ed0 (diff)
Add bsd:s service variant again
-rw-r--r--Ryujinx.Core/OsHle/ServiceMgr.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/ServiceMgr.cs b/Ryujinx.Core/OsHle/ServiceMgr.cs
index cbf6386f..f59647af 100644
--- a/Ryujinx.Core/OsHle/ServiceMgr.cs
+++ b/Ryujinx.Core/OsHle/ServiceMgr.cs
@@ -48,6 +48,7 @@ namespace Ryujinx.Core.OsHle
case "appletOE": Service = new ServiceAppletOE(); break;
case "audout:u": Service = new ServiceAudOut(); break;
case "audren:u": Service = new ServiceAudRen(); break;
+ case "bsd:s": Service = new ServiceBsd(); break;
case "bsd:u": Service = new ServiceBsd(); break;
case "friend:a": Service = new ServiceFriend(); break;
case "fsp-srv": Service = new ServiceFspSrv(); break;