From 7aed7808be17150df54e8961064abaa4f8a7cd10 Mon Sep 17 00:00:00 2001 From: Mary Date: Fri, 7 May 2021 18:18:23 +0200 Subject: [PATCH] misc: Fix default value for GraphicsConfig.MaxAnisotropy (#2274) As title say. Doesn't change anything as the Ryujinx project set it. --- Ryujinx.Graphics.Gpu/GraphicsConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs b/Ryujinx.Graphics.Gpu/GraphicsConfig.cs index af980e772..7ef102e2c 100644 --- a/Ryujinx.Graphics.Gpu/GraphicsConfig.cs +++ b/Ryujinx.Graphics.Gpu/GraphicsConfig.cs @@ -13,7 +13,7 @@ namespace Ryujinx.Graphics.Gpu /// /// Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide. /// - public static float MaxAnisotropy; + public static float MaxAnisotropy = -1; /// /// Base directory used to write shader code dumps.