Skip to content

Commit

Permalink
Merge pull request #263 from Game4all/dependabot/nuget/ppy.osu.Game-2…
Browse files Browse the repository at this point in the history
…023.1224.0

Bump ppy.osu.Game from 2023.1114.1 to 2023.1224.0
  • Loading branch information
Game4all committed Dec 26, 2023
2 parents f11f822 + 1038d63 commit e28ff9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions osu.Game.Rulesets.Gamebosu/Graphics/GamebosuToolbarIcon.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Framework.Screens;
using osu.Game.Overlays.Toolbar;
using osu.Game.Rulesets.Gamebosu.UI.Screens;
Expand All @@ -17,9 +19,13 @@ public GamebosuToolbarIcon(GamebosuRuleset ruleset)
}

[BackgroundDependencyLoader]
private void load(OsuGame game)
private void load(OsuGame game, TextureStore textures)
{
SetIcon("Textures/gamebosu_toolbar.png");
SetIcon(new Sprite
{
Texture = textures.Get("Textures/gamebosu_toolbar.png")
});

Action = () =>
{
if (!game.LocalUserPlaying.Value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<EmbeddedResource Include="Resources\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2023.1114.1" />
<PackageReference Include="ppy.osu.Game" Version="2023.1224.0" />
<ProjectReference Include="..\Emux\Emux.GameBoy\Emux.GameBoy.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
Expand Down

0 comments on commit e28ff9c

Please sign in to comment.