diff --git a/src/XIVLauncher.Core/UnixCompatibility/Dxvk.cs b/src/XIVLauncher.Core/UnixCompatibility/Dxvk.cs index a68d3ac3..ac01cf9c 100644 --- a/src/XIVLauncher.Core/UnixCompatibility/Dxvk.cs +++ b/src/XIVLauncher.Core/UnixCompatibility/Dxvk.cs @@ -35,7 +35,7 @@ public static class Dxvk _ => throw new ArgumentOutOfRangeException(), }; - public static bool MangoHudInstalled => DxvkSettings.MangoHudIsInstalled(); + public static bool MangoHudInstalled { get; } public static bool MangoHudEnabled => Program.Config.MangoHud != MangoHud.None; @@ -62,6 +62,7 @@ public static class Dxvk static Dxvk() { Versions = new Dictionary>(); + MangoHudInstalled = DxvkSettings.MangoHudIsInstalled(); } public static void Initialize()