From 44a28ea530948b868979c5993488fb750daa46e1 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 23 Jan 2025 17:39:34 -0600 Subject: [PATCH] infra: chore: Raise minimum required Windows 10 version Inspired by the breakages covered in #409 --- src/Ryujinx/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index 885d43ebb..6b5aa9b80 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -40,9 +40,9 @@ namespace Ryujinx.Ava { Version = ReleaseInformation.Version; - if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17134)) + if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 19041)) { - _ = MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 1803 and newer.\n", $"Ryujinx {Version}", MbIconwarning); + _ = MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 20H1 and newer.\n", $"Ryujinx {Version}", MbIconwarning); } PreviewerDetached = true;