From f2590adc4470e3b52e03e3a2fcef991eeafdb5e1 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 24 Mar 2020 22:37:30 -0300 Subject: [PATCH] No need for the gap on the enum --- Ryujinx.Graphics.Shader/Decoders/VideoType.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.Graphics.Shader/Decoders/VideoType.cs b/Ryujinx.Graphics.Shader/Decoders/VideoType.cs index 148daf3238..7186e7c33b 100644 --- a/Ryujinx.Graphics.Shader/Decoders/VideoType.cs +++ b/Ryujinx.Graphics.Shader/Decoders/VideoType.cs @@ -3,8 +3,8 @@ enum VideoType { U8 = 0, - U16 = 2, - U32 = 3, + U16 = 1, + U32 = 2, Signed = 1 << 2,