1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 12:50:20 +08:00

Merge branch 'master' into removeAge

This commit is contained in:
Dean Herbert
2018-07-09 17:43:23 +09:00
committed by GitHub
Unverified
2 changed files with 6 additions and 2 deletions
@@ -46,7 +46,9 @@ namespace osu.Game.Screens.Select.Leaderboards
public void UpdateRank(ScoreRank newRank)
{
Rank = newRank;
updateTexture();
if (IsLoaded)
updateTexture();
}
}
}
+3 -1
View File
@@ -42,7 +42,9 @@ namespace osu.Game.Users
return;
country = value;
sprite.Texture = getFlagTexture();
if (IsLoaded)
sprite.Texture = getFlagTexture();
}
}