mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02: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:
@@ -95,7 +95,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
||||
get => _customResolutionScale;
|
||||
set
|
||||
{
|
||||
_customResolutionScale = MathF.Round(value, 1);
|
||||
_customResolutionScale = value;
|
||||
|
||||
OnPropertyChanged();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user