1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

"started" for past matches

fixes grammar error at 'coming up next' section in schedule screen which displays schedule like "starting an hour ago" for past matches
This commit is contained in:
yhsphd 2021-01-24 00:26:52 +09:00
parent f2236312a0
commit c30b700b3a

View File

@ -194,7 +194,7 @@ namespace osu.Game.Tournament.Screens.Schedule
{
new TournamentSpriteText
{
Text = "Starting ",
Text = match.NewValue.Date.Value.CompareTo(DateTimeOffset.Now) > 0 ? "Starting " : "Started ",
Font = OsuFont.Torus.With(size: 24, weight: FontWeight.Regular)
},
new DrawableDate(match.NewValue.Date.Value)