Visual and readability improvements to StarCounter.

This commit is contained in:
Dean Herbert
2017-02-24 19:30:04 +09:00
parent 65a24dfe5d
commit 12db33ad4b
4 changed files with 95 additions and 99 deletions

View File

@ -158,7 +158,7 @@ namespace osu.Desktop.VisualTests.Tests
AddButton(@"Alter stars", delegate
{
stars.Count = RNG.NextSingle() * (stars.MaxStars + 1);
stars.Count = RNG.NextSingle() * (stars.StarCount + 1);
starsLabel.Text = stars.Count.ToString("0.00");
});