1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:28:00 +08:00

Update framework.

This commit is contained in:
Dean Herbert 2017-02-27 15:55:34 +09:00
parent 47997c20ad
commit 7c602a2af3
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 12fbf2b94af0ddef9daf0fab11c05288dee054a7
Subproject commit b0613241512e46eed9dc16ae08ed4064d2db4101

View File

@ -64,7 +64,7 @@ namespace osu.Game.Modes.UI
processor.TotalScore.ValueChanged += delegate { ScoreCounter?.Set((ulong)processor.TotalScore.Value); };
processor.Accuracy.ValueChanged += delegate { AccuracyCounter?.Set((float)processor.Accuracy.Value); };
processor.Combo.ValueChanged += delegate { ComboCounter?.Set((ulong)processor.Combo.Value); };
HealthDisplay?.Current.Weld(processor.Health);
HealthDisplay?.Current.BindTo(processor.Health);
}
}
}

View File

@ -27,7 +27,7 @@ namespace osu.Game.Screens.Select
{
private static readonly Vector2 wedged_container_shear = new Vector2(0.15f, 0);
private Container beatmapInfoContainer;
private BufferedContainer beatmapInfoContainer;
private OsuGameBase game;