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>
/// The beatmap version.
/// </summary>
public int FormatVersion = LegacyBeatmapDecoder.LATEST_VERSION;
public int FormatVersion;
protected ConvertHitObjectParser(double offset, int formatVersion)
{
Offset = offset;
formatVersion = formatVersion;
FormatVersion = formatVersion;
}
public override HitObject Parse(string text)