diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-08-30 13:14:45 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-08-30 13:14:45 -0300 |
| commit | 7cb6fd8090513b703da9b83dec04866647694f09 (patch) | |
| tree | 582eab4bccdedc73b7d926dad010af4632e32f9e | |
| parent | 27023e7afc603f2800a79d6bdbf87ce56e039664 (diff) | |
Fixup HasColor for depth/stencil values (#379)
| -rw-r--r-- | Ryujinx.Graphics/Gal/ImageFormatConverter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics/Gal/ImageFormatConverter.cs b/Ryujinx.Graphics/Gal/ImageFormatConverter.cs index f7b79912..a56ab1a3 100644 --- a/Ryujinx.Graphics/Gal/ImageFormatConverter.cs +++ b/Ryujinx.Graphics/Gal/ImageFormatConverter.cs @@ -237,7 +237,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()); |
