aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgreggameplayer <33609333+greggameplayer@users.noreply.github.com>2018-06-28 23:32:07 +0200
committerAc_K <Acoustik666@gmail.com>2018-06-28 23:32:07 +0200
commit3262fd13dadb98b189e8e8447aacc4762845bbe5 (patch)
tree4bafcda1f9c5bfbd60904bea5b0e2fc3fe3bf836
parent22f138628bd05419791d3b569ec558bbf322398d (diff)
add the forgotten mm:u link (#190)
-rw-r--r--Ryujinx.HLE/OsHle/Services/ServiceFactory.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs b/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs
index 0720c5d2..914c8449 100644
--- a/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs
+++ b/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs
@@ -8,6 +8,7 @@ using Ryujinx.HLE.OsHle.Services.Friend;
using Ryujinx.HLE.OsHle.Services.FspSrv;
using Ryujinx.HLE.OsHle.Services.Hid;
using Ryujinx.HLE.OsHle.Services.Lm;
+using Ryujinx.HLE.OsHle.Services.Mm;
using Ryujinx.HLE.OsHle.Services.Nfp;
using Ryujinx.HLE.OsHle.Services.Ns;
using Ryujinx.HLE.OsHle.Services.Nv;
@@ -79,7 +80,10 @@ namespace Ryujinx.HLE.OsHle.Services
case "lm":
return new ILogService();
-
+
+ case "mm:u":
+ return new IRequest();
+
case "nfp:user":
return new IUserManager();