Replace default with CountryCode.Unknown

This commit is contained in:
Salman Ahmed
2022-07-18 08:54:35 +03:00
parent cf99849478
commit 018da74fe8
8 changed files with 12 additions and 11 deletions

View File

@ -133,7 +133,7 @@ namespace osu.Game.Overlays.Rankings
private void onCountryChanged(ValueChangedEvent<CountryCode> country)
{
if (country.NewValue == default)
if (Current.Value == CountryCode.Unknown)
return;
flag.CountryCode = country.NewValue;