Remove null conditional

This commit is contained in:
Salman Ahmed 2022-09-23 17:06:55 +03:00
parent 4e9053b099
commit 835cae3087
1 changed files with 1 additions and 1 deletions

View File

@ -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()