1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-27 22:36:26 -05:00

Fixup SSY (#424)

This commit is contained in:
ReinUsesLisp
2018-09-19 17:11:05 -03:00
committed by gdkchan
parent 6d65e53664
commit e04221b293
2 changed files with 2 additions and 2 deletions

View File

@@ -360,7 +360,7 @@ namespace Ryujinx.Graphics.Gal.Shader
private void PrintDeclSsy()
{
SB.AppendLine("uint " + GlslDecl.SsyCursorName + ";");
SB.AppendLine("uint " + GlslDecl.SsyCursorName + "= 0;");
SB.AppendLine("uint " + GlslDecl.SsyStackName + "[" + GlslDecl.SsyStackSize + "];" + Environment.NewLine);
}