diff --git a/osu-framework b/osu-framework index fee17db537..4d131fd0d9 160000 --- a/osu-framework +++ b/osu-framework @@ -1 +1 @@ -Subproject commit fee17db53738938cc3ab8589ef1ff1dc7fd82d8a +Subproject commit 4d131fd0d997bee313de3fa33a45900637570ff0 diff --git a/osu-resources b/osu-resources index e674531595..12bbab717d 160000 --- a/osu-resources +++ b/osu-resources @@ -1 +1 @@ -Subproject commit e67453159540f5008b5efadfbc12dfb3f4bee1f7 +Subproject commit 12bbab717d372dadbd3220d38da862276ac97e98 diff --git a/osu.Desktop.VisualTests/VisualTestGame.cs b/osu.Desktop.VisualTests/VisualTestGame.cs index bdce72b3f5..0392dc5443 100644 --- a/osu.Desktop.VisualTests/VisualTestGame.cs +++ b/osu.Desktop.VisualTests/VisualTestGame.cs @@ -24,6 +24,11 @@ namespace osu.Desktop.VisualTests public override void SetHost(GameHost host) { base.SetHost(host); + + host.UpdateThread.InactiveHz = host.UpdateThread.ActiveHz; + host.DrawThread.InactiveHz = host.DrawThread.ActiveHz; + host.InputThread.InactiveHz = host.InputThread.ActiveHz; + host.Window.CursorState = CursorState.Hidden; } } diff --git a/osu.Game/Screens/Select/Leaderboards/DrawableRank.cs b/osu.Game/Screens/Select/Leaderboards/DrawableRank.cs index fd8a24f213..1e9d6dc831 100644 --- a/osu.Game/Screens/Select/Leaderboards/DrawableRank.cs +++ b/osu.Game/Screens/Select/Leaderboards/DrawableRank.cs @@ -29,7 +29,12 @@ namespace osu.Game.Screens.Select.Leaderboards Children = new Drawable[] { - rankSprite = new Sprite { FillMode = FillMode.Fill }, + rankSprite = new Sprite + { + Anchor = Anchor.Centre, + Origin = Anchor.Centre, + FillMode = FillMode.Fit + }, }; } }