Make counters work again

This commit is contained in:
Adonais Romero González
2016-10-12 14:33:04 -05:00
parent 8dadc2b215
commit 798e7241d8
4 changed files with 19 additions and 11 deletions

View File

@ -17,11 +17,14 @@ namespace osu.Game.Graphics.UserInterface
/// </summary>
public uint LeadingZeroes = 0;
public ScoreCounter() : base()
{
countSpriteText.FixedWidth = true;
}
public override void Load(BaseGame game)
{
base.Load(game);
countSpriteText.FixedWidth = true;
}
protected override string formatCount(ulong count)