Fix up DT not affecting hitobject densities

This commit is contained in:
smoogipoo
2017-11-17 17:28:22 +09:00
parent bf44b3d0ef
commit 5d753427f6
5 changed files with 16 additions and 11 deletions

View File

@ -183,7 +183,8 @@ namespace osu.Game.Tests.Visual
this.osuGame = osuGame;
this.beatmaps = beatmaps;
text.Text = $"{beatmap.Metadata.Artist} - {beatmap.Metadata.Title} ({beatmap.Metadata.AuthorString}) [{beatmap.Version}]";
var working = beatmaps.GetWorkingBeatmap(beatmap);
text.Text = $"{working.Metadata.Artist} - {working.Metadata.Title} ({working.Metadata.AuthorString}) [{working.BeatmapInfo.Version}]";
osuGame.Beatmap.ValueChanged += beatmapChanged;
}