1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 17:52:56 +08:00

append time as well

This commit is contained in:
integer 2023-01-10 00:02:31 +00:00
parent 272288c9aa
commit f971405c8c

View File

@ -23,7 +23,7 @@ namespace osu.Game.Database
protected override string GetFilename(ScoreInfo score)
{
string scoreString = score.GetDisplayString();
string filename = $"{scoreString} ({score.Date.LocalDateTime:yyyy-MM-dd})";
string filename = $"{scoreString} ({score.Date.LocalDateTime:yyyy-MM-dd_HH-mm})";
return filename;
}