We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9caf61d commit 472e950Copy full SHA for 472e950
BepInEx.Preloader.Core/PlatformUtils.cs
@@ -10,7 +10,7 @@ internal static class PlatformUtils
10
{
11
public static readonly bool ProcessIs64Bit = IntPtr.Size >= 8;
12
public static Version WindowsVersion { get; set; }
13
- public static Version WineVersion { get; set; }
+ public static string WineVersion { get; set; }
14
15
public static string LinuxArchitecture { get; set; }
16
public static string LinuxKernelVersion { get; set; }
@@ -81,7 +81,7 @@ public static void SetPlatform()
81
82
current |= Platform.Wine;
83
var getVersion = wineGetVersion.AsDelegate<GetWineVersionDelegate>();
84
- WineVersion = new Version(getVersion());
+ WineVersion = getVersion();
85
}
86
87
0 commit comments