aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/ServiceTable.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2023-08-17 14:59:05 +0200
committerGitHub <noreply@github.com>2023-08-17 09:59:05 -0300
commitb0b7843d5c7372db60211255be0edfcb97dcb56d (patch)
tree08ddc16f41e3455f66c47d86bba83d7295e1a83c /src/Ryujinx.Horizon/ServiceTable.cs
parent6ed613a6e6a66d57d2fdb045d926e42dfcdd3206 (diff)
mm: Migrate service in Horizon project (#5580)
* mm: Migrate service in Horizon project This PR migrate the `mm:u` service to the Horizon project, things were checked by some RE aswell, that's why some vars are renamed, the logic should be the same as before. Tests are welcome. * Lock _sessionList instead * Fix comment * Fix Session fields order
Diffstat (limited to 'src/Ryujinx.Horizon/ServiceTable.cs')
-rw-r--r--src/Ryujinx.Horizon/ServiceTable.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/ServiceTable.cs b/src/Ryujinx.Horizon/ServiceTable.cs
index d47f91bf..8dfacbeb 100644
--- a/src/Ryujinx.Horizon/ServiceTable.cs
+++ b/src/Ryujinx.Horizon/ServiceTable.cs
@@ -1,5 +1,6 @@
using Ryujinx.Horizon.Bcat;
using Ryujinx.Horizon.LogManager;
+using Ryujinx.Horizon.MmNv;
using Ryujinx.Horizon.Prepo;
using System.Collections.Generic;
using System.Threading;
@@ -25,6 +26,7 @@ namespace Ryujinx.Horizon
RegisterService<LmMain>();
RegisterService<PrepoMain>();
RegisterService<BcatMain>();
+ RegisterService<MmNvMain>();
_totalServices = entries.Count;