Skip to content

Commit

Permalink
Add forgotten OnPressed handling
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueGlassBlock committed Jan 5, 2024
1 parent 0d01d92 commit 9cffd81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Sentakki/UI/DrawableSentakkiRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
switch (e.Action)
{
case GlobalAction.DecreaseScrollSpeed:
configEntrySpeed.Value -= 0.5f;
configEntrySpeed.Value -= 0.25f;
return true;
case GlobalAction.IncreaseScrollSpeed:
configEntrySpeed.Value += 0.5f;
configEntrySpeed.Value += 0.25f;
return true;
}

Expand Down

0 comments on commit 9cffd81

Please sign in to comment.