Do not attempt to read unused attribute, fix attributes count (#520)

This commit is contained in:
gdkchan 2018-12-26 17:29:50 -02:00 committed by GitHub
parent 72b667ac0d
commit bfc19ae143
2 changed files with 6 additions and 1 deletions

View file

@ -878,7 +878,7 @@ namespace Ryujinx.Graphics.Gal.Shader
}
}
if (DeclInfo.Index >= 16)
if (DeclInfo.Index >= 32)
{
throw new InvalidOperationException($"Shader attribute offset {Abuf.Offs} is invalid.");
}