1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 20:33:35 +08:00

Adjust maximum aspect ratio setting for tablets to match stupid wide monitors (#37024)

Closes https://github.com/ppy/osu/issues/26925.
This commit is contained in:
Dean Herbert
2026-03-18 17:45:54 +09:00
committed by GitHub
Unverified
parent e0ccdfae94
commit ab2daf6e1d
@@ -62,7 +62,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
/// <summary>
/// Based on ultrawide monitor configurations, plus a bit of lenience for users which are intentionally aiming for higher horizontal velocity.
/// </summary>
private const float largest_feasible_aspect_ratio = 23f / 9;
private const float largest_feasible_aspect_ratio = 32f / 9;
private readonly BindableNumber<float> aspectRatio = new BindableFloat(1)
{