mirror of https://github.com/ppy/osu
Fix playback position being set incorrectly for IAnimationTimeReference
This commit is contained in:
parent
66b8a8ad2e
commit
33c64428a8
|
@ -72,7 +72,7 @@ protected override void LoadComplete()
|
|||
if (timeReference != null)
|
||||
{
|
||||
Clock = timeReference.Clock;
|
||||
PlaybackPosition = timeReference.AnimationStartTime - timeReference.Clock.CurrentTime;
|
||||
PlaybackPosition = timeReference.Clock.CurrentTime - timeReference.AnimationStartTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue