Merge pull request #3028 from peppy/fix-drawable-load-regression

Fix regression in drawable rank first display
This commit is contained in:
Dan Balasescu 2018-07-17 12:30:28 +09:00 committed by GitHub
commit 9ee54dabfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ public void UpdateRank(ScoreRank newRank)
{ {
Rank = newRank; Rank = newRank;
if (IsLoaded) if (LoadState >= LoadState.Ready)
updateTexture(); updateTexture();
} }
} }

View File

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