Remove allowFallback parameters completely

This commit is contained in:
Dean Herbert
2021-05-27 14:50:42 +09:00
parent 4fd89faaa4
commit 70a844ac10
14 changed files with 45 additions and 76 deletions

View File

@ -33,9 +33,9 @@ namespace osu.Game.Rulesets.Mania.UI.Components
Direction.BindValueChanged(onDirectionChanged, true);
}
protected override void SkinChanged(ISkinSource skin, bool allowFallback)
protected override void SkinChanged(ISkinSource skin)
{
base.SkinChanged(skin, allowFallback);
base.SkinChanged(skin);
UpdateHitPosition();
}