Skip to content

Commit

Permalink
infra: chore: Raise minimum required Windows 10 version
Browse files Browse the repository at this point in the history
Inspired by the breakages covered in #409
  • Loading branch information
GreemDev committed Jan 23, 2025
1 parent 7829fd8 commit c06f16c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ryujinx/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public static int Main(string[] args)
{
Version = ReleaseInformation.Version;

if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17134))
if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 19041))
{
_ = MessageBoxA(nint.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 1803 and newer.\n", $"Ryujinx {Version}", MbIconwarning);
_ = MessageBoxA(nint.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 20H1 and newer.\n", $"Ryujinx {Version}", MbIconwarning);
}

PreviewerDetached = true;
Expand Down

0 comments on commit c06f16c

Please sign in to comment.