mirror of
https://github.com/ppy/osu
synced 2025-03-05 10:58:34 +00:00
Remove duplicate condition in TournamentFont (#7523)
Remove duplicate condition in TournamentFont
This commit is contained in:
commit
a6f247314e
@ -61,7 +61,7 @@ namespace osu.Game.Tournament
|
||||
string weightString = weight.ToString();
|
||||
|
||||
// Only exo has an explicit "regular" weight, other fonts do not
|
||||
if (weight == FontWeight.Regular && family != GetFamilyString(TournamentTypeface.Aquatico) && family != GetFamilyString(TournamentTypeface.Aquatico))
|
||||
if (weight == FontWeight.Regular && family != GetFamilyString(TournamentTypeface.Aquatico))
|
||||
weightString = string.Empty;
|
||||
|
||||
return weightString;
|
||||
|
Loading…
Reference in New Issue
Block a user