Merge pull request #21346 from peppy/higher-aspect-ratio-max

Increase maximum aspect ratio for tablet settings to 23:9 / 2.55
This commit is contained in:
Bartłomiej Dach 2022-11-21 20:41:47 +01:00 committed by GitHub
commit 4490504104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,9 +45,9 @@ namespace osu.Game.Overlays.Settings.Sections.Input
private GameHost host { get; set; }
/// <summary>
/// Based on ultrawide monitor configurations.
/// 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 = 21f / 9;
private const float largest_feasible_aspect_ratio = 23f / 9;
private readonly BindableNumber<float> aspectRatio = new BindableFloat(1)
{