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

Fix mania scroll direction not being read from database

This commit is contained in:
smoogipoo
2018-08-07 12:20:24 +09:00
Unverified
parent 8ee38460d3
commit f719b9bef5
@@ -17,7 +17,7 @@ namespace osu.Game.Rulesets.Mania.UI
public ManiaScrollingInfo(ManiaConfigManager config)
{
config.BindWith(ManiaSetting.ScrollDirection, configDirection);
configDirection.BindValueChanged(v => Direction.Value = (ScrollingDirection)v);
configDirection.BindValueChanged(v => Direction.Value = (ScrollingDirection)v, true);
}
}
}