Fixed accuracy's counter first value change.

This commit is contained in:
TheGui 2017-03-04 04:48:32 -03:00
parent 833b83ed62
commit e3c3806759
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ public OsuScoreProcessor(int hitObjectCount)
: base(hitObjectCount)
{
Health.Value = 1;
Accuracy.Value = 1;
}
protected override void UpdateCalculations(JudgementInfo judgement)

View File

@ -26,7 +26,7 @@ public void SetFraction(float numerator, float denominator)
public PercentageCounter()
{
DisplayedCountSpriteText.FixedWidth = true;
Count = 1.0f;
Count = DisplayedCount = 1.0f;
}
protected override string FormatCount(float count)