aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuke Warner <65521430+LukeWarnut@users.noreply.github.com>2024-05-14 10:19:43 -0400
committerGitHub <noreply@github.com>2024-05-14 16:19:43 +0200
commite9edf0ab7fa9c64347c3e53e0d9d862756b1627f (patch)
treef0b0fcddbfd039c58fd9491157adc925a35bed7e /src
parent6e40b645547f6453fb5e0bee98d2fa6330e747c7 (diff)
Update outdated Windows version warning (#6481)1.1.1301
* Change text * clarify version number * update gtk
Diffstat (limited to 'src')
-rw-r--r--src/Ryujinx.Gtk3/Program.cs2
-rw-r--r--src/Ryujinx/Program.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx.Gtk3/Program.cs b/src/Ryujinx.Gtk3/Program.cs
index 1845c512..f6993431 100644
--- a/src/Ryujinx.Gtk3/Program.cs
+++ b/src/Ryujinx.Gtk3/Program.cs
@@ -75,7 +75,7 @@ namespace Ryujinx
if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17134))
{
- MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nStarting on June 1st 2022, Ryujinx will only support Windows 10 1803 and newer.\n", $"Ryujinx {Version}", MbIconWarning);
+ MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 1803 and newer.\n", $"Ryujinx {Version}", MbIconWarning);
}
// Parse arguments
diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs
index 89e895e8..f925ce15 100644
--- a/src/Ryujinx/Program.cs
+++ b/src/Ryujinx/Program.cs
@@ -40,7 +40,7 @@ namespace Ryujinx.Ava
if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17134))
{
- _ = MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nStarting on June 1st 2022, Ryujinx will only support Windows 10 1803 and newer.\n", $"Ryujinx {Version}", MbIconwarning);
+ _ = MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 1803 and newer.\n", $"Ryujinx {Version}", MbIconwarning);
}
PreviewerDetached = true;