1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00

Fix incorrect invoke

This commit is contained in:
Dan Balasescu 2022-01-31 17:19:04 +09:00
parent 3ec193d47e
commit a49a9ed0a0

View File

@ -101,7 +101,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
stack.Push(new MultiSpectatorPlayerLoader(Score, () => stack.Push(new MultiSpectatorPlayerLoader(Score, () =>
{ {
var player = new MultiSpectatorPlayer(Score, GameplayClock); var player = new MultiSpectatorPlayer(Score, GameplayClock);
player.OnGameplayStarted += OnGameplayStarted; player.OnGameplayStarted += () => OnGameplayStarted?.Invoke();
return player; return player;
})); }));