mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Update various usages of Country
inline with new enum
This commit is contained in:
@ -32,14 +32,14 @@ namespace osu.Game.Users.Drawables
|
||||
/// </summary>
|
||||
public Action Action;
|
||||
|
||||
public UpdateableFlag(Country country = null)
|
||||
public UpdateableFlag(Country country = default)
|
||||
{
|
||||
Country = country;
|
||||
}
|
||||
|
||||
protected override Drawable CreateDrawable(Country country)
|
||||
{
|
||||
if (country == null && !ShowPlaceholderOnNull)
|
||||
if (country == default && !ShowPlaceholderOnNull)
|
||||
return null;
|
||||
|
||||
return new Container
|
||||
|
Reference in New Issue
Block a user