diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-02-22 13:55:29 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-22 13:55:29 -0300 |
| commit | c43fb92bbf92dbeedd6b0e6299457e6136919f84 (patch) | |
| tree | c87a06afe00c5248364169994925a38846b6db8f /src/Ryujinx.HLE/Switch.cs | |
| parent | 167f50bbcd5b2378a038e540877be4d9b71a12f6 (diff) | |
Ensure service init runs after Horizon constructor (#6342)
Diffstat (limited to 'src/Ryujinx.HLE/Switch.cs')
| -rw-r--r-- | src/Ryujinx.HLE/Switch.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Switch.cs b/src/Ryujinx.HLE/Switch.cs index 498714dc..912a39b0 100644 --- a/src/Ryujinx.HLE/Switch.cs +++ b/src/Ryujinx.HLE/Switch.cs @@ -55,6 +55,7 @@ namespace Ryujinx.HLE Processes = new ProcessLoader(this); TamperMachine = new TamperMachine(); + System.InitializeServices(); System.State.SetLanguage(Configuration.SystemLanguage); System.State.SetRegion(Configuration.Region); |
