mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 11:12:54 +08:00
Fix field not being set correctly
This commit is contained in:
parent
d2709613bc
commit
8faf12579a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user