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:
parent
f2236312a0
commit
c30b700b3a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user