Skip to content

Commit

Permalink
Merge pull request #556 from LumpBloom7/dependabot/nuget/ppy.osu.Game…
Browse files Browse the repository at this point in the history
…-2024.221.0

Bump ppy.osu.Game from 2024.219.0 to 2024.221.0
  • Loading branch information
LumpBloom7 authored Feb 21, 2024
2 parents 7a9acb8 + 65586c0 commit 8d21167
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Sentakki/SentakkiInputManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected override bool Handle(UIEvent e)
protected override void PropagateReleased(IEnumerable<Drawable> drawables, InputState state, SentakkiAction released)
{
int actionCount = 0;
var pressed = (List<SentakkiAction>)PressedActions;
var pressed = PressedActions;

for (int i = 0; i < pressed.Count; ++i)
{
Expand All @@ -61,7 +61,7 @@ protected override void PropagateReleased(IEnumerable<Drawable> drawables, Input
}
}

public SlimReadOnlyListWrapper<SentakkiAction> PressedActions => ((List<SentakkiAction>)KeyBindingContainer.PressedActions).AsSlimReadOnly();
public SlimReadOnlyListWrapper<SentakkiAction> PressedActions => KeyBindingContainer.PressedActions;

// For makeshift virtual input handling
public void TriggerPressed(SentakkiAction action) => KeyBindingContainer.TriggerPressed(action);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>osu.Game.Rulesets.Sentakki</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2024.219.0"/>
<PackageReference Include="ppy.osu.Game" Version="2024.221.0"/>
</ItemGroup>

<!--Since we aren't changing the assembly name, we use the assembly title to indicate whether it is a dev build-->
Expand Down

0 comments on commit 8d21167

Please sign in to comment.