1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 17:00:32 +08:00

Merge remote-tracking branch 'origin/fix-drawable-load-regression' into release

This commit is contained in:
Dean Herbert
2018-07-14 02:33:41 +09:00
Unverified
2 changed files with 2 additions and 2 deletions
@@ -47,7 +47,7 @@ namespace osu.Game.Screens.Select.Leaderboards
{
Rank = newRank;
if (IsLoaded)
if (LoadState >= LoadState.Ready)
updateTexture();
}
}
+1 -1
View File
@@ -43,7 +43,7 @@ namespace osu.Game.Users
country = value;
if (IsLoaded)
if (LoadState >= LoadState.Ready)
sprite.Texture = getFlagTexture();
}
}