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 @@ public void UpdateRank(ScoreRank newRank)
{
Rank = newRank;
if (IsLoaded)
if (LoadState >= LoadState.Ready)
updateTexture();
}
}

View File

@ -43,7 +43,7 @@ public Country Country
country = value;
if (IsLoaded)
if (LoadState >= LoadState.Ready)
sprite.Texture = getFlagTexture();
}
}