mirror of
https://github.com/ppy/osu
synced 2024-12-25 08:12:41 +00:00
style: fix late night oopsies
This commit is contained in:
parent
3a240aaa5f
commit
952814604e
@ -9,7 +9,6 @@ using osu.Framework.Audio.Sample;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Framework.IO.Stores;
|
||||
using osu.Framework.Logging;
|
||||
using osu.Game.Audio;
|
||||
using osu.Game.IO;
|
||||
using osu.Game.IO.Archives;
|
||||
@ -64,8 +63,6 @@ namespace osu.Game.Tests.Skins
|
||||
|
||||
foreach (string oskFile in available_skins)
|
||||
{
|
||||
Logger.Log($"Testing file {oskFile}...");
|
||||
|
||||
using (var stream = TestResources.OpenResource(oskFile))
|
||||
using (var storage = new ZipArchiveReader(stream))
|
||||
{
|
||||
|
@ -43,8 +43,7 @@ namespace osu.Game.Screens.Play.HUD
|
||||
base.LoadComplete();
|
||||
|
||||
avatar.User = gameplayState.Score.ScoreInfo.User;
|
||||
avatar.CornerRadius = CornerRadius.Value;
|
||||
CornerRadius.BindValueChanged(e => avatar.CornerRadius = e.NewValue);
|
||||
CornerRadius.BindValueChanged(e => avatar.CornerRadius = e.NewValue, true);
|
||||
}
|
||||
|
||||
public bool UsesFixedAnchor { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user