diff options
author | Nicholas Rodine <halfofastaple@gmail.com> | 2022-08-17 02:05:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 09:05:15 +0200 |
commit | 2197f41506e1ed7c4c657a1899491298bd66f7f9 (patch) | |
tree | bf4fb59575befca48f31c5f83ca6ed49c5fee17b /Ryujinx.Graphics.Shader/TextureFormat.cs | |
parent | c8f9292babd5aa6021ce1bd6a977130baebb7de3 (diff) |
Removed extra semicolons. (#3594)1.1.220
Diffstat (limited to 'Ryujinx.Graphics.Shader/TextureFormat.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/TextureFormat.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Shader/TextureFormat.cs b/Ryujinx.Graphics.Shader/TextureFormat.cs index fb4e5b03..ecdd15cb 100644 --- a/Ryujinx.Graphics.Shader/TextureFormat.cs +++ b/Ryujinx.Graphics.Shader/TextureFormat.cs @@ -120,7 +120,7 @@ namespace Ryujinx.Graphics.Shader case TextureFormat.R16G16B16A16Sint: case TextureFormat.R32G32B32A32Sint: return VariableType.S32; - }; + } return VariableType.F32; } |