mirror of https://github.com/ppy/osu
Fix regression in drawable rank first display
This commit is contained in:
parent
eeb6bdef93
commit
bbb11a4066
|
@ -47,7 +47,7 @@ public void UpdateRank(ScoreRank newRank)
|
|||
{
|
||||
Rank = newRank;
|
||||
|
||||
if (IsLoaded)
|
||||
if (LoadState >= LoadState.Ready)
|
||||
updateTexture();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ public Country Country
|
|||
|
||||
country = value;
|
||||
|
||||
if (IsLoaded)
|
||||
if (LoadState >= LoadState.Ready)
|
||||
sprite.Texture = getFlagTexture();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue