1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 23:24:33 +08:00

Fix possible exit from non-current screen

This commit is contained in:
smoogipoo
2019-04-22 19:24:57 +09:00
Unverified
parent c1b649b0fb
commit 414d555484
+1 -1
View File
@@ -276,7 +276,7 @@ namespace osu.Game.Screens.Multi
updatePollingRate(isIdle.Value);
if (screenStack.CurrentScreen == null)
if (screenStack.CurrentScreen == null && this.IsCurrentScreen())
this.Exit();
}