1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00

Remove redundant qualifiers

This commit is contained in:
Dean Herbert 2022-05-21 13:53:58 +09:00
parent 8db80b92bb
commit d3f115bfe2

View File

@ -124,9 +124,9 @@ namespace osu.Game.Graphics.Containers
double currentTrackTime = clock.CurrentTime + EarlyActivationMilliseconds;
if (this.beatmap.Value.TrackLoaded && this.beatmap.Value.BeatmapLoaded)
if (beatmap.Value.TrackLoaded && beatmap.Value.BeatmapLoaded)
{
track = this.beatmap.Value.Track;
track = beatmap.Value.Track;
}
IsBeatSyncedWithTrack = beatmap != null && clock.IsRunning && track?.Length > 0;