1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 02:47:19 +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;