mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Update usages of IsAlive/IsLoaded in line with framework changes
This commit is contained in:
@ -37,7 +37,7 @@ namespace osu.Game.Screens
|
||||
}
|
||||
|
||||
// Make sure the in-progress loading is complete before pushing the screen.
|
||||
while (screen.LoadState < LoadState.Loaded)
|
||||
while (screen.LoadState < LoadState.Ready)
|
||||
Thread.Sleep(1);
|
||||
|
||||
base.Push(screen);
|
||||
|
@ -108,7 +108,7 @@ namespace osu.Game.Screens.Play
|
||||
}
|
||||
}
|
||||
|
||||
public override bool HandleInput => receptor?.IsAlive != true;
|
||||
public override bool HandleInput => receptor == null;
|
||||
|
||||
private Receptor receptor;
|
||||
|
||||
|
Reference in New Issue
Block a user