From a3430dd072a0ba38f43c488bdbe60c655102158b Mon Sep 17 00:00:00 2001 From: Jorolf Date: Wed, 29 Mar 2017 16:10:07 +0200 Subject: [PATCH] add culture info --- osu.Game/Screens/Select/Details.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.Game/Screens/Select/Details.cs b/osu.Game/Screens/Select/Details.cs index 1145e13338..38709057bb 100644 --- a/osu.Game/Screens/Select/Details.cs +++ b/osu.Game/Screens/Select/Details.cs @@ -12,6 +12,7 @@ using osu.Framework.Graphics.Sprites; using osu.Game.Database; using osu.Game.Graphics; using System.Collections.Generic; +using System.Globalization; using System.Linq; namespace osu.Game.Screens.Select @@ -405,7 +406,7 @@ namespace osu.Game.Screens.Select { difficultyValue = value; bar.Length = value/maxValue; - valueText.Text = value.ToString(); + valueText.Text = value.ToString(CultureInfo.InvariantCulture); } }