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-05 00:23:37 -06:00
parent 04865d2710
commit ceb50c0a4d
2 changed files with 2 additions and 2 deletions
@@ -95,7 +95,7 @@ namespace Ryujinx.Ava.UI.ViewModels
get => _customResolutionScale;
set
{
_customResolutionScale = MathF.Round(value, 1);
_customResolutionScale = value;
OnPropertyChanged();
}