Explorar el Código

Add missing null check on image binding (#1632)

gdkchan hace 5 años
padre
commit
efa77a2415
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs

+ 1 - 1
Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs

@@ -304,7 +304,7 @@ namespace Ryujinx.Graphics.Gpu.Image
 
                     Format format = binding.Format;
 
-                    if (format == 0)
+                    if (format == 0 && texture != null)
                     {
                         format = texture.Format;
                     }