mirror of
https://github.com/ppy/osu
synced 2025-01-31 02:12:03 +00:00
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:
commit
4490504104
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user