mirror of
https://github.com/ppy/osu.git
synced 2026-05-25 05:39:57 +08:00
Remove redundant qualifiers
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user