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:
parent
d2709613bc
commit
8faf12579a
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user