Parse time signature from legacy beatmap control points.

This commit is contained in:
smoogipooo
2017-03-21 21:18:08 +09:00
parent 7cbc5b24c8
commit a272675705
4 changed files with 15 additions and 8 deletions

View File

@ -207,7 +207,8 @@ namespace osu.Game.Beatmaps.Formats
VelocityAdjustment = beatLength < 0 ? -beatLength / 100.0 : 1,
TimingChange = split.Length <= 6 || split[6][0] == '1',
KiaiMode = (effectFlags & 1) > 0,
OmitFirstBarLine = (effectFlags & 8) > 0
OmitFirstBarLine = (effectFlags & 8) > 0,
TimeSignature = (TimeSignatures)int.Parse(split[2])
};
}