mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Add null-check when invoking OnSeek
This commit is contained in:
parent
f6e279baa1
commit
04715a5471
@ -589,7 +589,7 @@ namespace osu.Game.Screens.Play
|
||||
public void Seek(double time)
|
||||
{
|
||||
GameplayClockContainer.Seek(time);
|
||||
OnSeek.Invoke();
|
||||
OnSeek?.Invoke();
|
||||
}
|
||||
|
||||
private ScheduledDelegate frameStablePlaybackResetDelegate;
|
||||
|
Loading…
Reference in New Issue
Block a user