aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/ServiceTable.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2023-09-14 09:50:19 +0200
committerGitHub <noreply@github.com>2023-09-14 09:50:19 +0200
commite6700b314f1384f015666767baf9ea1d8411e330 (patch)
tree4adba27f9fd232e279d1697a54a4f3c4e374d806 /src/Ryujinx.Horizon/ServiceTable.cs
parente2cfe6fe44b62d7aba1425ae2e621f50045f406c (diff)
lbl: Migrate service to Horizon (#5628)
* lbl: Migrate service to Horizon * Fix formatting * Addresses gdkchan's feedback * Fix comments
Diffstat (limited to 'src/Ryujinx.Horizon/ServiceTable.cs')
-rw-r--r--src/Ryujinx.Horizon/ServiceTable.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Ryujinx.Horizon/ServiceTable.cs b/src/Ryujinx.Horizon/ServiceTable.cs
index 8dfacbeb..cd443329 100644
--- a/src/Ryujinx.Horizon/ServiceTable.cs
+++ b/src/Ryujinx.Horizon/ServiceTable.cs
@@ -1,4 +1,5 @@
using Ryujinx.Horizon.Bcat;
+using Ryujinx.Horizon.Lbl;
using Ryujinx.Horizon.LogManager;
using Ryujinx.Horizon.MmNv;
using Ryujinx.Horizon.Prepo;
@@ -23,10 +24,11 @@ namespace Ryujinx.Horizon
entries.Add(new ServiceEntry(T.Main, this, options));
}
- RegisterService<LmMain>();
- RegisterService<PrepoMain>();
RegisterService<BcatMain>();
+ RegisterService<LblMain>();
+ RegisterService<LmMain>();
RegisterService<MmNvMain>();
+ RegisterService<PrepoMain>();
_totalServices = entries.Count;