1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 03:31:23 +08:00

fix leftover parameter name

This commit is contained in:
LastExceed
2020-07-15 10:41:34 +02:00
Unverified
parent f73fd7ffe9
commit b43b1673cc
@@ -86,9 +86,9 @@ namespace osu.Game.Rulesets.Mania.Mods
}
[BackgroundDependencyLoader]
private void load(IScrollingInfo configManager)
private void load(IScrollingInfo scrollingInfo)
{
scrollDirection.BindTo(configManager.Direction);
scrollDirection.BindTo(scrollingInfo.Direction);
scrollDirection.BindValueChanged(onScrollDirectionChanged, true);
}