mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Fix missed usage in test scene
This commit is contained in:
parent
487a5ecdba
commit
ce1743ab28
@ -43,7 +43,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
|
||||
private Replay replay;
|
||||
|
||||
private IBindableList<int> users;
|
||||
private readonly IBindableList<int> users = new BindableList<int>();
|
||||
|
||||
private TestReplayRecorder recorder;
|
||||
|
||||
@ -67,7 +67,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
{
|
||||
replay = new Replay();
|
||||
|
||||
users = streamingClient.PlayingUsers.GetBoundCopy();
|
||||
users.BindTo(streamingClient.PlayingUsers);
|
||||
users.BindCollectionChanged((obj, args) =>
|
||||
{
|
||||
switch (args.Action)
|
||||
|
Loading…
Reference in New Issue
Block a user