Fix incorrect method name

This commit is contained in:
smoogipoo
2018-05-07 11:22:25 +09:00
parent db3e48c194
commit 794418432f
4 changed files with 5 additions and 5 deletions

View File

@ -57,7 +57,7 @@ namespace osu.Game.Beatmaps
Process.Start(path);
}
protected abstract IBeatmap GetPlayableBeatmap();
protected abstract IBeatmap GetBeatmap();
protected abstract Texture GetBackground();
protected abstract Track GetTrack();
protected virtual Skin GetSkin() => new DefaultSkin();
@ -71,7 +71,7 @@ namespace osu.Game.Beatmaps
private IBeatmap populateBeatmap()
{
var b = GetPlayableBeatmap() ?? new Beatmap();
var b = GetBeatmap() ?? new Beatmap();
// use the database-backed info.
b.BeatmapInfo = BeatmapInfo;