misc: chore: Fix object creation in Shader project

This commit is contained in:
Evan Husted
2025-01-26 15:22:30 -06:00
parent 7f5a356c3d
commit ccef0b49eb
10 changed files with 37 additions and 37 deletions

View File

@@ -147,7 +147,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
public Instruction[] GetMainInterface()
{
List<Instruction> mainInterface = new List<Instruction>();
List<Instruction> mainInterface = new();
mainInterface.AddRange(Inputs.Values);
mainInterface.AddRange(Outputs.Values);