diff --git a/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs b/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs index ebb017d831..d2cc9e2bf9 100644 --- a/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs +++ b/Ryujinx.Graphics/Gal/Shader/GlslDecompiler.cs @@ -1371,7 +1371,7 @@ namespace Ryujinx.Graphics.Gal.Shader case 1: if (HasDepth) { - return $"vec2({GetOperExpr(Op, Meta.Coordinates[0])}{DepthArgument})"; + return $"vec3({GetOperExpr(Op, Meta.Coordinates[0])}, 0.0{DepthArgument})"; } return GetOperExpr(Op, Meta.Coordinates[0]);