diff options
author | Ac_K <Acoustik666@gmail.com> | 2023-09-20 22:55:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 22:55:27 +0200 |
commit | fb55f57da7cbeb39d12d39a13be16ff602a8fda3 (patch) | |
tree | b7b0bff4513e39d70eb219966e473ca8f498e2a8 /src/Ryujinx.Horizon/ServiceTable.cs | |
parent | 44862dce3ef307b12366376ada3fa0db693bfaf9 (diff) |
Horizon: Migrate wlan and stubs latest services (#5708)1.1.1020
* Horizon: Migrate wlan and stubs latest services
This PR migrate empty wlan services, values are found by RE.
Latest firmwares added some other services which are now stubbed and up-to-date.
* Fix imports ordering
Diffstat (limited to 'src/Ryujinx.Horizon/ServiceTable.cs')
-rw-r--r-- | src/Ryujinx.Horizon/ServiceTable.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/ServiceTable.cs b/src/Ryujinx.Horizon/ServiceTable.cs index cd443329..fd423aa2 100644 --- a/src/Ryujinx.Horizon/ServiceTable.cs +++ b/src/Ryujinx.Horizon/ServiceTable.cs @@ -3,6 +3,7 @@ using Ryujinx.Horizon.Lbl; using Ryujinx.Horizon.LogManager; using Ryujinx.Horizon.MmNv; using Ryujinx.Horizon.Prepo; +using Ryujinx.Horizon.Wlan; using System.Collections.Generic; using System.Threading; @@ -29,6 +30,7 @@ namespace Ryujinx.Horizon RegisterService<LmMain>(); RegisterService<MmNvMain>(); RegisterService<PrepoMain>(); + RegisterService<WlanMain>(); _totalServices = entries.Count; |