Custom resolution scale changes

* Remove rounding (no longer rounds to the nearest 0.1)

* Decrease maximum resolution scale from 100 to 10
This commit is contained in:
KeatonTheBot 2024-11-04 23:23:52 -06:00
parent 04865d2710
commit ceb50c0a4d
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ namespace Ryujinx.Ava.UI.ViewModels
get => _customResolutionScale;
set
{
_customResolutionScale = MathF.Round(value, 1);
_customResolutionScale = value;
OnPropertyChanged();
}

View file

@ -113,7 +113,7 @@
SimpleNumberFormat="F2"
SpinButtonPlacementMode="Inline"
IsVisible="{Binding IsCustomResolutionScaleActive}"
Maximum="100"
Maximum="10"
Minimum="0.1"
Value="{Binding CustomResolutionScale}" />
</StackPanel>