1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Attempt pausing every single frame

This commit is contained in:
Salman Ahmed 2021-02-19 11:33:26 +03:00
parent 4436585aa4
commit ddd1dcff88

View File

@ -435,7 +435,7 @@ namespace osu.Game.Screens.Play
if (canPause)
Pause();
else
Scheduler.AddDelayed(updatePauseOnFocusLostState, 200);
Scheduler.AddOnce(updatePauseOnFocusLostState);
}
}