Skip to content

Commit

Permalink
update to newest osu version
Browse files Browse the repository at this point in the history
  • Loading branch information
Flutterish committed Apr 26, 2022
1 parent cbd6de5 commit 153bac9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions osu.Game.Rulesets.RurusettoAddon/RurusettoIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ bool guard ( [NotNullWhen(false)] object? x, string code ) {

try {
loadComponent.Invoke( game,
new object[] { new RurusettoOverlay( ruleset ), (Action<RurusettoOverlay>)addOverlay, true }
new object[] { new RurusettoOverlay( ruleset ), (Action<Drawable>)addOverlay, true }
);
}
catch ( Exception ) {
error( "#LCIE" );
}

void addOverlay ( RurusettoOverlay overlay ) {
void addOverlay ( Drawable drawable ) {
RurusettoOverlay overlay = (RurusettoOverlay)drawable;
Action abort = () => { };
void errDefer ( Action action ) {
var oldAbort = abort;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
<None Remove="Resources\Textures\oh_no.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2022.409.0" />
<PackageReference Include="ppy.osu.Game" Version="2022.424.1" />
</ItemGroup>
</Project>

0 comments on commit 153bac9

Please sign in to comment.