Fix usage of culture local ToUpper causing incorrect display on Turkish machines

Closes #3098.
This commit is contained in:
Dean Herbert
2018-07-24 11:34:06 +02:00
parent 9dc55688d2
commit ab9340f4be
11 changed files with 26 additions and 15 deletions

View File

@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
@ -323,7 +324,7 @@ namespace osu.Game.Screens.Tournament
if (string.IsNullOrEmpty(line))
continue;
if (line.ToUpper().StartsWith("GROUP"))
if (line.ToUpper(CultureInfo.InvariantCulture).StartsWith("GROUP"))
continue;
// ReSharper disable once AccessToModifiedClosure