mirror of
https://github.com/ppy/osu.git
synced 2025-02-16 02:23:10 +08:00
Merge pull request #1271 from peppy/missing-return
Add missing return to PlayerLoader
This commit is contained in:
commit
c200fbe961
@ -109,7 +109,10 @@ namespace osu.Game.Screens.Play
|
|||||||
private void pushWhenLoaded()
|
private void pushWhenLoaded()
|
||||||
{
|
{
|
||||||
if (!player.IsLoaded)
|
if (!player.IsLoaded)
|
||||||
|
{
|
||||||
Schedule(pushWhenLoaded);
|
Schedule(pushWhenLoaded);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
contentOut();
|
contentOut();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user