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:
parent
3ec193d47e
commit
a49a9ed0a0
@ -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;
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user