Fix incorrect load state being used

This commit is contained in:
smoogipoo 2020-08-11 12:37:00 +09:00
parent 20197e2768
commit b64142dff9
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public void ChangeBeatmapSetPosition(BeatmapSetInfo beatmapSetInfo, int index)
/// <summary>
/// Returns whether the beatmap track is loaded.
/// </summary>
public bool TrackLoaded => CurrentTrack.IsLoaded;
public bool TrackLoaded => CurrentTrack.TrackLoaded;
private void beatmapUpdated(ValueChangedEvent<WeakReference<BeatmapSetInfo>> weakSet)
{