mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-14 07:37:04 +00:00
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:
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();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@
|
|||
SimpleNumberFormat="F2"
|
||||
SpinButtonPlacementMode="Inline"
|
||||
IsVisible="{Binding IsCustomResolutionScaleActive}"
|
||||
Maximum="100"
|
||||
Maximum="10"
|
||||
Minimum="0.1"
|
||||
Value="{Binding CustomResolutionScale}" />
|
||||
</StackPanel>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue