diff --git a/Helpers.cs b/Helpers.cs index ebc8694..e6f87b5 100644 --- a/Helpers.cs +++ b/Helpers.cs @@ -112,10 +112,10 @@ public static async Task DownloadUEVRAsync(string downloadURL, string tagN .Columns( [ new TaskDescriptionColumn(), - new ProgressBarColumn(), - new PercentageColumn(), - new RemainingTimeColumn(), - new SpinnerColumn(), + new ProgressBarColumn(), + new PercentageColumn(), + new RemainingTimeColumn(), + new SpinnerColumn(), ]) .StartAsync(async ctx => { var handler = new HttpClientHandler() { AllowAutoRedirect = true }; @@ -422,7 +422,7 @@ public static bool IsUnrealExecutable(string gameExe) { [System.Runtime.InteropServices.DllImport("user32.dll")] private static extern void SwitchToThisWindow(IntPtr hWnd, bool fAltTab); public static void focusGameWindow(string gameExe) { - var mainGameProcess = Helpers.GetMainGameProcess(gameExe); + var mainGameProcess = GetMainGameProcess(gameExe); if (mainGameProcess == null) { Logger.Warn($"Failed to find main game process for {gameExe}"); return;