mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Fix incorrect method name
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user