From e01b8b1b2d95ab2e1304df650f4dd6546e821ba3 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Thu, 23 Aug 2018 13:53:12 -0300 Subject: [PATCH] Fixup HasColor for depth/stencil values --- Ryujinx.Graphics/Gal/ImageFormatConverter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics/Gal/ImageFormatConverter.cs b/Ryujinx.Graphics/Gal/ImageFormatConverter.cs index 2d20a8a0e0..253eb86a86 100644 --- a/Ryujinx.Graphics/Gal/ImageFormatConverter.cs +++ b/Ryujinx.Graphics/Gal/ImageFormatConverter.cs @@ -228,7 +228,7 @@ namespace Ryujinx.Graphics.Gal case GalImageFormat.D24_UNORM_S8_UINT: case GalImageFormat.D32_SFLOAT: case GalImageFormat.D16_UNORM: - return true; + return false; } throw new NotImplementedException(Format.ToString());