diff options
author | gdkchan <gab.dark.100@gmail.com> | 2024-09-17 16:25:26 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 16:25:26 -0300 |
commit | 062ef43eb46ffec0ddc441907d38da3cfc235f09 (patch) | |
tree | 6d69215f147484f7b8ed88a7c9a808487e1392ed | |
parent | eb8132b627d3c0285dd199f4e40c6f3800bdb22d (diff) |
Revert "Wait for async task to complete (#7122)" (#7318)1.1.1393
This reverts commit ccf96bf5e673456ec80f72725e4c9afa4e4c5a85.
-rw-r--r-- | src/Ryujinx/UI/Windows/MainWindow.axaml.cs | 4 |
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 1f57ada3..348412e7 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 LoadApplications(); } - CheckLaunchState().Wait(); +#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed + CheckLaunchState(); +#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed } private void SetMainContent(Control content = null) |