From 3262fd13dadb98b189e8e8447aacc4762845bbe5 Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Thu, 28 Jun 2018 23:32:07 +0200 Subject: [PATCH] add the forgotten mm:u link (#190) --- Ryujinx.HLE/OsHle/Services/ServiceFactory.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs b/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs index 0720c5d25..914c84490 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();