diff --git a/src/Ryujinx/UI/Windows/MainWindow.axaml.cs b/src/Ryujinx/UI/Windows/MainWindow.axaml.cs index e7934f38a..1ba324c29 100644 --- a/src/Ryujinx/UI/Windows/MainWindow.axaml.cs +++ b/src/Ryujinx/UI/Windows/MainWindow.axaml.cs @@ -138,7 +138,6 @@ namespace Ryujinx.Ava.UI.Windows Executor.ExecuteBackgroundAsync(async () => { - await ShowIntelMacWarningAsync(); if (CommandLineState.FirmwareToInstallPathArg.TryGet(out FilePath fwPath)) { if (fwPath is { ExistsAsFile: true, Extension: "xci" or "zip" } || fwPath.ExistsAsDirectory) @@ -757,20 +756,6 @@ namespace Ryujinx.Ava.UI.Windows }); } - private static bool _intelMacWarningShown = !RunningPlatform.IsIntelMac; - - public static async Task ShowIntelMacWarningAsync() - { - if (_intelMacWarningShown) - return; - - await Dispatcher.UIThread.InvokeAsync(async () => await ContentDialogHelper.CreateWarningDialog( - "Intel Mac Warning", - "Intel Macs are not supported and will not work properly.\nIf you continue, do not come to our Discord asking for support;\nand do not report bugs on the GitHub. They will be closed.")); - - _intelMacWarningShown = true; - } - private void AppWindow_OnGotFocus(object sender, GotFocusEventArgs e) { if (ViewModel.AppHost is null)