Просмотр исходного кода

misc: Fix default value for GraphicsConfig.MaxAnisotropy (#2274)

As title say.
Doesn't change anything as the Ryujinx project set it.
Mary 5 лет назад
Родитель
Сommit
7aed7808be
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Ryujinx.Graphics.Gpu/GraphicsConfig.cs

+ 1 - 1
Ryujinx.Graphics.Gpu/GraphicsConfig.cs

@@ -13,7 +13,7 @@ namespace Ryujinx.Graphics.Gpu
         /// <summary>
         /// <summary>
         /// Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide.
         /// Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide.
         /// </summary>
         /// </summary>
-        public static float MaxAnisotropy;
+        public static float MaxAnisotropy = -1;
 
 
         /// <summary>
         /// <summary>
         /// Base directory used to write shader code dumps.
         /// Base directory used to write shader code dumps.