From a683e5ec34cbbbf1fe08a4eafc1cbaeac7d0969a Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Tue, 20 Apr 2021 17:36:24 +0900 Subject: [PATCH] Seek using local method --- osu.Game/Screens/Play/GameplayClockContainer.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/Play/GameplayClockContainer.cs b/osu.Game/Screens/Play/GameplayClockContainer.cs index f6b99c094f..e9a9c83119 100644 --- a/osu.Game/Screens/Play/GameplayClockContainer.cs +++ b/osu.Game/Screens/Play/GameplayClockContainer.cs @@ -105,9 +105,10 @@ namespace osu.Game.Screens.Play /// public virtual void Reset() { - AdjustableSource.Seek(StartOffset); - AdjustableSource.Stop(); + Seek(StartOffset); + // Manually stop the source in order to not affect the IsPaused state. + AdjustableSource.Stop(); if (!IsPaused.Value) Start();