Skip to content

Commit

Permalink
Merge pull request #19087 from frenzibyte/fix-unsupported-os-message
Browse files Browse the repository at this point in the history
Fix unsupported OS message stating Windows 8 to be supported
  • Loading branch information
peppy authored Jul 12, 2022
2 parents 6cf94b7 + c046585 commit 83703e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Desktop/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static void Main(string[] args)
{
SDL.SDL_ShowSimpleMessageBox(SDL.SDL_MessageBoxFlags.SDL_MESSAGEBOX_ERROR,
"Your operating system is too old to run osu!",
"This version of osu! requires at least Windows 8 to run.\nPlease upgrade your operating system or consider using an older version of osu!.", IntPtr.Zero);
"This version of osu! requires at least Windows 8.1 to run.\nPlease upgrade your operating system or consider using an older version of osu!.", IntPtr.Zero);
return;
}

Expand Down

0 comments on commit 83703e2

Please sign in to comment.