1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Fix fonction name

This commit is contained in:
Hanamuke 2018-09-14 19:52:32 +02:00
parent c8d3776c79
commit 3e7006ec1f

View File

@ -44,7 +44,7 @@ namespace osu.Game.Beatmaps
public virtual void PostProcess()
{
void UpdateNestedCombo(Rulesets.Objects.HitObject obj, int comboIndex, int indexInCurrentCombo)
void updateNestedCombo(Rulesets.Objects.HitObject obj, int comboIndex, int indexInCurrentCombo)
{
if (obj is IHasComboInformation)
{
@ -52,7 +52,7 @@ namespace osu.Game.Beatmaps
objectComboInfo.ComboIndex = comboIndex;
objectComboInfo.IndexInCurrentCombo = indexInCurrentCombo;
foreach (var nestedObjet in obj.NestedHitObjects)
UpdateNestedCombo(nestedObjet, comboIndex, indexInCurrentCombo);
updateNestedCombo(nestedObjet, comboIndex, indexInCurrentCombo);
}
}
foreach (var hitObject in Beatmap.HitObjects)
@ -60,7 +60,7 @@ namespace osu.Game.Beatmaps
{
var objectComboInfo = (IHasComboInformation)hitObject;
foreach (var nested in hitObject.NestedHitObjects)
UpdateNestedCombo(nested, objectComboInfo.ComboIndex, objectComboInfo.IndexInCurrentCombo);
updateNestedCombo(nested, objectComboInfo.ComboIndex, objectComboInfo.IndexInCurrentCombo);
}
}
}