Change "judgment" to "judgement"

This commit is contained in:
Henry Lin 2021-05-16 10:17:04 +08:00
parent 50a3775a22
commit a91f2d3dba
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ public OsuPlayfield()
var hitWindows = new OsuHitWindows();
foreach (var result in Enum.GetValues(typeof(HitResult)).OfType<HitResult>().Where(r => r > HitResult.None && hitWindows.IsHitResultAllowed(r)))
poolDictionary.Add(result, new DrawableJudgementPool(result, onJudgmentLoaded));
poolDictionary.Add(result, new DrawableJudgementPool(result, onJudgementLoaded));
AddRangeInternal(poolDictionary.Values);
@ -102,7 +102,7 @@ private void onDrawableHitObjectLoaded(Drawable drawable)
}
}
private void onJudgmentLoaded(DrawableOsuJudgement judgement)
private void onJudgementLoaded(DrawableOsuJudgement judgement)
{
judgementAboveHitObjectLayer.Add(judgement.GetProxyAboveHitObjectsContent());
}