Add missing return to PlayerLoader

was being a bit too eager previously
This commit is contained in:
Dean Herbert 2017-09-15 08:15:23 +09:00
parent 742cd5db91
commit 6ea22cc6c7
1 changed files with 3 additions and 0 deletions

View File

@ -109,7 +109,10 @@ protected override void OnEntering(Screen last)
private void pushWhenLoaded() private void pushWhenLoaded()
{ {
if (!player.IsLoaded) if (!player.IsLoaded)
{
Schedule(pushWhenLoaded); Schedule(pushWhenLoaded);
return;
}
contentOut(); contentOut();