This commit is contained in:
Jorolf
2017-07-26 19:42:34 +02:00
parent 8e685a98d4
commit 7b8997cfc2
2 changed files with 2 additions and 3 deletions

View File

@ -16,6 +16,7 @@ using OpenTK.Graphics;
using System.Diagnostics;
using osu.Framework.Input;
using osu.Framework.Localisation;
using System.Globalization;
namespace osu.Game.Overlays.Profile.Sections.Ranks
{
@ -89,7 +90,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
{
stats.Add(new OsuSpriteText
{
Text = $"weighted: {(int)(play.PerformancePoints * weight)}pp ({weight.ToString("0%")})",
Text = $"weighted: {(int)(play.PerformancePoints * weight)}pp ({weight.ToString("0%", CultureInfo.CurrentCulture)})",
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Colour = colour.GrayA,