mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 16:32:54 +08:00
Merge pull request #3028 from peppy/fix-drawable-load-regression
Fix regression in drawable rank first display
This commit is contained in:
commit
9ee54dabfa
@ -47,7 +47,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
||||
{
|
||||
Rank = newRank;
|
||||
|
||||
if (IsLoaded)
|
||||
if (LoadState >= LoadState.Ready)
|
||||
updateTexture();
|
||||
}
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ namespace osu.Game.Users
|
||||
|
||||
country = value;
|
||||
|
||||
if (IsLoaded)
|
||||
if (LoadState >= LoadState.Ready)
|
||||
sprite.Texture = getFlagTexture();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user