From 4f8bec8dfc30603841aa026a4127ccb1b0a18aea Mon Sep 17 00:00:00 2001 From: FreezyLemon Date: Tue, 19 Dec 2017 19:35:42 +0100 Subject: [PATCH] Removed makeshift fix that has already been addressed elsewhere. --- osu.Game/Overlays/BeatmapSet/PreviewButton.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/BeatmapSet/PreviewButton.cs b/osu.Game/Overlays/BeatmapSet/PreviewButton.cs index ef248c02d3..52edd1714f 100644 --- a/osu.Game/Overlays/BeatmapSet/PreviewButton.cs +++ b/osu.Game/Overlays/BeatmapSet/PreviewButton.cs @@ -80,7 +80,7 @@ namespace osu.Game.Overlays.BeatmapSet { base.Update(); - if (Playing.Value && preview != null && preview.Length > 0) + if (Playing.Value && preview != null) { progress.Width = (float)(preview.CurrentTime / preview.Length); }