add culture info

This commit is contained in:
Jorolf 2017-03-29 16:10:07 +02:00
parent cdb3150c56
commit a3430dd072

View File

@ -12,6 +12,7 @@ using osu.Framework.Graphics.Sprites;
using osu.Game.Database; using osu.Game.Database;
using osu.Game.Graphics; using osu.Game.Graphics;
using System.Collections.Generic; using System.Collections.Generic;
using System.Globalization;
using System.Linq; using System.Linq;
namespace osu.Game.Screens.Select namespace osu.Game.Screens.Select
@ -405,7 +406,7 @@ namespace osu.Game.Screens.Select
{ {
difficultyValue = value; difficultyValue = value;
bar.Length = value/maxValue; bar.Length = value/maxValue;
valueText.Text = value.ToString(); valueText.Text = value.ToString(CultureInfo.InvariantCulture);
} }
} }