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

Fix field not being set correctly

This commit is contained in:
smoogipoo 2018-08-15 10:53:25 +09:00
parent d2709613bc
commit 8faf12579a

View File

@ -27,12 +27,12 @@ namespace osu.Game.Rulesets.Objects.Legacy
/// <summary> /// <summary>
/// The beatmap version. /// The beatmap version.
/// </summary> /// </summary>
public int FormatVersion = LegacyBeatmapDecoder.LATEST_VERSION; public int FormatVersion;
protected ConvertHitObjectParser(double offset, int formatVersion) protected ConvertHitObjectParser(double offset, int formatVersion)
{ {
Offset = offset; Offset = offset;
formatVersion = formatVersion; FormatVersion = formatVersion;
} }
public override HitObject Parse(string text) public override HitObject Parse(string text)