1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 00:44:18 +08:00

Fix incorrect BeatmapInfo.ToString implementation

This commit is contained in:
Dean Herbert
2022-01-10 12:36:11 +09:00
Unverified
parent f2f1adb792
commit e5af673b01
+1 -1
View File
@@ -184,7 +184,7 @@ namespace osu.Game.Beatmaps
public BeatmapInfo Clone() => this.Detach();
public override string ToString() => Metadata?.ToString() ?? base.ToString();
public override string ToString() => this.GetDisplayTitle();
#endregion
}