mirror of https://github.com/ppy/osu
Remove null conditional
This commit is contained in:
parent
4e9053b099
commit
835cae3087
|
@ -128,7 +128,7 @@ protected override void LoadComplete()
|
|||
//
|
||||
// In the case of storyboard animations, we want to synchronise with game time perfectly
|
||||
// so let's get a correct time based on gameplay clock and earliest transform.
|
||||
PlaybackPosition = (beatSyncProvider?.Clock?.CurrentTime ?? Clock.CurrentTime) - Animation.EarliestTransformTime;
|
||||
PlaybackPosition = (beatSyncProvider.Clock?.CurrentTime ?? Clock.CurrentTime) - Animation.EarliestTransformTime;
|
||||
}
|
||||
|
||||
private void skinSourceChanged()
|
||||
|
|
Loading…
Reference in New Issue