diff options
| author | Ac_K <Acoustik666@gmail.com> | 2020-12-01 21:44:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-01 21:44:04 +0100 |
| commit | a04a1b663d71b861e26f3bf70e8dba8b828f33ea (patch) | |
| tree | bbfc09d55aa93e9716207f21e1f6e5ac597d1ed9 /Ryujinx.Common/Configuration/ConfigurationState.cs | |
| parent | 7b66cb0d9051cab581df6853f11e87ed115da6c3 (diff) | |
config: Fix MaxAnisotropy value parsing (#1764)
Diffstat (limited to 'Ryujinx.Common/Configuration/ConfigurationState.cs')
| -rw-r--r-- | Ryujinx.Common/Configuration/ConfigurationState.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Common/Configuration/ConfigurationState.cs b/Ryujinx.Common/Configuration/ConfigurationState.cs index 915cb77e..2d725149 100644 --- a/Ryujinx.Common/Configuration/ConfigurationState.cs +++ b/Ryujinx.Common/Configuration/ConfigurationState.cs @@ -448,7 +448,7 @@ namespace Ryujinx.Configuration { Graphics.ResScale.Value = 1; Graphics.ResScaleCustom.Value = 1.0f; - Graphics.MaxAnisotropy.Value = -1; + Graphics.MaxAnisotropy.Value = -1.0f; Graphics.ShadersDumpPath.Value = ""; Logger.EnableDebug.Value = false; Logger.EnableStub.Value = true; |
