1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:47:46 +08:00

Show touch input settings on iOS

This does not cover android since `TouchHandler` is SDL-based.
This commit is contained in:
Susko3 2023-11-09 15:12:24 +01:00
parent 0c4c9aa4b5
commit 1b08f317fb

View File

@ -575,14 +575,14 @@ namespace osu.Game
case JoystickHandler jh:
return new JoystickSettings(jh);
case TouchHandler th:
return new TouchSettings(th);
}
}
switch (handler)
{
case TouchHandler th:
return new TouchSettings(th);
case MidiHandler:
return new InputSection.HandlerSection(handler);