1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 12:47:18 +08:00

Fix player restart invoking user-level pause

This commit is contained in:
Bartłomiej Dach 2020-10-31 16:08:15 +01:00
parent 941e8525af
commit 19023e7d43

View File

@ -472,7 +472,7 @@ namespace osu.Game.Screens.Play
{
// at the point of restarting the track should either already be paused or the volume should be zero.
// stopping here is to ensure music doesn't become audible after exiting back to PlayerLoader.
musicController.Stop();
musicController.Stop(false);
sampleRestart?.Play();
RestartRequested?.Invoke();