1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 14:12:56 +08:00

Fix song progress value may go beyond 1

This commit is contained in:
Andrei Zavatski 2024-01-27 03:11:12 +03:00
parent 567d2bedbf
commit 3387565ba9

View File

@ -1,6 +1,7 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
@ -96,7 +97,7 @@ namespace osu.Game.Screens.Play.HUD
if (objects == null)
return;
double currentTime = FrameStableClock.CurrentTime;
double currentTime = Math.Min(FrameStableClock.CurrentTime, LastHitTime);
bool isInIntro = currentTime < FirstHitTime;