Fix initialization of BeatmapInfo

This commit is contained in:
Drew DeVault
2016-10-19 13:13:14 -04:00
parent 3ee0bf2b80
commit 8d4a211419
3 changed files with 8 additions and 7 deletions

View File

@ -214,7 +214,11 @@ namespace osu.Game.Beatmaps.Formats
HitObjects = new List<HitObject>(),
ControlPoints = new List<ControlPoint>(),
ComboColors = new List<Color4>(),
BeatmapInfo = new BeatmapInfo(),
BeatmapInfo = new BeatmapInfo
{
Metadata = new BeatmapMetadata(),
BaseDifficulty = new BaseDifficulty(),
},
};
var section = Section.None;