diff options
author | Mary <me@thog.eu> | 2021-12-08 22:24:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-08 18:24:26 -0300 |
commit | 00c69f2098bf78cecefd897599c95f68450d88a1 (patch) | |
tree | 7a8672d0e9edd0924e1d8b72a2996a36443c01f1 /Ryujinx/Program.cs | |
parent | bc4e70b6fafc333c91caf5a94e49ece339dccd80 (diff) |
Remove usage of Mono.Posix.NETStandard accross all projects (#2906)
* Remove usage of Mono.Posix.NETStandard in Ryujinx project
* Remove usage of Mono.Posix.NETStandard in ARMeilleure project
* Remove usage of Mono.Posix.NETStandard in Ryujinx.Memory project
* Address gdkchan's comments
Diffstat (limited to 'Ryujinx/Program.cs')
-rw-r--r-- | Ryujinx/Program.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index a4528fb0..1e0fdd3a 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -61,9 +61,6 @@ namespace Ryujinx } } - // Enforce loading of Mono.Posix to avoid .NET runtime lazy loading it during an update. - Assembly.Load("Mono.Posix.NETStandard"); - // Make process DPI aware for proper window sizing on high-res screens. ForceDpiAware.Windows(); WindowScaleFactor = ForceDpiAware.GetWindowScaleFactor(); |