mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
prevent negative width on progress bar
This commit is contained in:
@ -15,6 +15,7 @@ using OpenTK;
|
||||
using OpenTK.Graphics;
|
||||
using osu.Game.Overlays.Direct;
|
||||
using osu.Framework.Configuration;
|
||||
using System;
|
||||
|
||||
namespace osu.Game.Overlays.BeatmapSet
|
||||
{
|
||||
@ -82,7 +83,8 @@ namespace osu.Game.Overlays.BeatmapSet
|
||||
|
||||
if (Playing.Value && preview != null)
|
||||
{
|
||||
progress.Width = (float)(preview.CurrentTime / preview.Length);
|
||||
// prevent negative (potential infinite) width if a track without length was loaded
|
||||
progress.Width = (float)Math.Max(preview.CurrentTime / preview.Length, 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user