diff --git a/osu-resources b/osu-resources index 07024c119a..f85c594c18 160000 --- a/osu-resources +++ b/osu-resources @@ -1 +1 @@ -Subproject commit 07024c119a76fabb7822f4b1d68a8c9ed989d41a +Subproject commit f85c594c182db2b01233e29ca52639b7baa00402 diff --git a/osu.Game/Graphics/Cursor/MenuCursor.cs b/osu.Game/Graphics/Cursor/MenuCursor.cs index ada1308b3e..1447fa9417 100644 --- a/osu.Game/Graphics/Cursor/MenuCursor.cs +++ b/osu.Game/Graphics/Cursor/MenuCursor.cs @@ -82,7 +82,7 @@ namespace osu.Game.Graphics.Cursor } [BackgroundDependencyLoader] - private void load(OsuConfigManager config, TextureStore textures) + private void load(OsuConfigManager config, TextureStore textures, OsuColour colour) { cursorScale = config.GetBindable(OsuConfig.CursorSize); @@ -90,7 +90,7 @@ namespace osu.Game.Graphics.Cursor { cursorContainer = new Container { - Size = new Vector2(28), + Size = new Vector2(32), Children = new Drawable[] { new Sprite @@ -102,8 +102,9 @@ namespace osu.Game.Graphics.Cursor { FillMode = FillMode.Fit, BlendingMode = BlendingMode.Additive, + Colour = colour.Pink, Alpha = 0, - Texture = textures.Get(@"Cursor/menu-cursor"), + Texture = textures.Get(@"Cursor/menu-cursor-additive"), }, } } diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs index bfef31d14a..f454956de7 100644 --- a/osu.Game/OsuGameBase.cs +++ b/osu.Game/OsuGameBase.cs @@ -8,7 +8,6 @@ using osu.Framework.Allocation; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; -using osu.Framework.Graphics.Cursor; using osu.Framework.IO.Stores; using osu.Framework.Platform; using osu.Game.Beatmaps;