1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Fix inspections / typos

This commit is contained in:
Dean Herbert 2022-11-18 15:47:37 +09:00
parent d17c091d63
commit e4f522aad1
2 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ namespace osu.Game.Screens.Play.HUD
{
base.LoadComplete();
Scheduler.AddDelayed(sort, 1000, true);
Scheduler.AddDelayed(Sort, 1000, true);
}
/// <summary>
@ -158,7 +158,7 @@ namespace osu.Game.Screens.Play.HUD
}
}
protected virtual void sort()
protected virtual void Sort()
{
if (sorting.IsValid)
return;

View File

@ -100,13 +100,13 @@ namespace osu.Game.Screens.Play.HUD
local.DisplayOrder.Value = long.MaxValue;
}
protected override void sort()
protected override void Sort()
{
base.sort();
base.Sort();
if (scoresType.Value != PlayBeatmapDetailArea.TabType.Local)
{
// change displayed potision to '-' when there are 50 already submitted scores and tracked score is last
// change displayed position to '-' when there are 50 already submitted scores and tracked score is last
if (TrackedScore?.ScorePosition == Flow.Count && Flow.Count > GetScoresRequest.MAX_SCORES_PER_REQUEST)
TrackedScore.ScorePosition = null;
}