mirror of https://github.com/ppy/osu
Fix incorrect `BeatmapInfo.ToString` implementation
This commit is contained in:
parent
f2f1adb792
commit
e5af673b01
|
@ -184,7 +184,7 @@ public BeatmapDifficulty BaseDifficulty
|
||||||
|
|
||||||
public BeatmapInfo Clone() => this.Detach();
|
public BeatmapInfo Clone() => this.Detach();
|
||||||
|
|
||||||
public override string ToString() => Metadata?.ToString() ?? base.ToString();
|
public override string ToString() => this.GetDisplayTitle();
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue