Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix back-to-front comparison
Browse files Browse the repository at this point in the history
peppy committed Apr 12, 2024
1 parent fcf4404 commit 4822889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Screens/Edit/Timing/WaveformComparisonDisplay.cs
Original file line number Diff line number Diff line change
@@ -192,7 +192,7 @@ private void showFromTime(double time, bool animated)
private void regenerateDisplay(bool animated)
{
// Before a track is loaded, it won't have a valid length, which will break things.
if (beatmap.Value.Track.IsLoaded())
if (!beatmap.Value.Track.IsLoaded())
{
Scheduler.AddOnce(regenerateDisplay, animated);
return;

0 comments on commit 4822889

Please sign in to comment.