mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix field not being set correctly
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user