1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 02:23:06 +08:00

Fix regression in drawable rank first display

This commit is contained in:
Dean Herbert 2018-07-13 19:53:29 +09:00
parent eeb6bdef93
commit bbb11a4066
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ namespace osu.Game.Screens.Select.Leaderboards
{ {
Rank = newRank; Rank = newRank;
if (IsLoaded) if (LoadState >= LoadState.Ready)
updateTexture(); updateTexture();
} }
} }

View File

@ -43,7 +43,7 @@ namespace osu.Game.Users
country = value; country = value;
if (IsLoaded) if (LoadState >= LoadState.Ready)
sprite.Texture = getFlagTexture(); sprite.Texture = getFlagTexture();
} }
} }