Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
keton committed Feb 2, 2024
1 parent 1e13ada commit c6db3b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Helpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ public static async Task<bool> 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 };
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit c6db3b1

Please sign in to comment.