aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Ryujinx/UI/Windows/MainWindow.axaml.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Ryujinx/UI/Windows/MainWindow.axaml.cs b/src/Ryujinx/UI/Windows/MainWindow.axaml.cs
index 1f57ada38..348412e78 100644
--- a/src/Ryujinx/UI/Windows/MainWindow.axaml.cs
+++ b/src/Ryujinx/UI/Windows/MainWindow.axaml.cs
@@ -482,7 +482,9 @@ namespace Ryujinx.Ava.UI.Windows
482 LoadApplications(); 482 LoadApplications();
483 } 483 }
484 484
485 CheckLaunchState().Wait(); 485#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
486 CheckLaunchState();
487#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
486 } 488 }
487 489
488 private void SetMainContent(Control content = null) 490 private void SetMainContent(Control content = null)