Skip to content

Commit

Permalink
Merge pull request #433 from theguii/master
Browse files Browse the repository at this point in the history
Fixed accuracy's counter first value change.
  • Loading branch information
peppy authored Mar 4, 2017
2 parents 833b83e + e3c3806 commit 58f4f02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions osu.Game.Modes.Osu/OsuScoreProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public OsuScoreProcessor(int hitObjectCount)
: base(hitObjectCount)
{
Health.Value = 1;
Accuracy.Value = 1;
}

protected override void UpdateCalculations(JudgementInfo judgement)
Expand Down
2 changes: 1 addition & 1 deletion osu.Game/Graphics/UserInterface/PercentageCounter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 58f4f02

Please sign in to comment.