Skip to content

Commit

Permalink
Show mouse and joystick settings on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Susko3 committed May 19, 2024
1 parent 5e1f696 commit e4858a9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions osu.Game/OsuGameBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -578,17 +578,17 @@ public virtual SettingsSubsection CreateSettingsSubsectionFor(InputHandler handl
{
case ITabletHandler th:
return new TabletSettings(th);

case MouseHandler mh:
return new MouseSettings(mh);

case JoystickHandler jh:
return new JoystickSettings(jh);
}
}

switch (handler)
{
case MouseHandler mh:
return new MouseSettings(mh);

case JoystickHandler jh:
return new JoystickSettings(jh);

case TouchHandler th:
return new TouchSettings(th);

Expand Down

0 comments on commit e4858a9

Please sign in to comment.