1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 00:42:55 +08:00

Set beatLength inline

This commit is contained in:
Dean Herbert 2020-07-18 12:03:49 +09:00
parent 8147e67f53
commit 2f16b448ea

View File

@ -20,8 +20,11 @@ namespace osu.Game.Beatmaps.ControlPoints
public static readonly TimingControlPoint DEFAULT = new TimingControlPoint
{
BeatLength = default_beat_length,
BeatLengthBindable = { Disabled = true },
BeatLengthBindable =
{
Value = default_beat_length,
Disabled = true
},
TimeSignatureBindable = { Disabled = true }
};