mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-21 19:37:05 +00:00
misc: chore: Use collection expressions
This commit is contained in:
parent
4d5757417e
commit
e2973a875a
236 changed files with 9843 additions and 7561 deletions
|
|
@ -40,7 +40,7 @@ namespace Ryujinx.Graphics.Shader.Translation.Transforms
|
|||
|
||||
operation.Dest = null;
|
||||
|
||||
Operand[] callArgs = new Operand[] { Const(functionId), value, index, mask, valid };
|
||||
Operand[] callArgs = [Const(functionId), value, index, mask, valid];
|
||||
|
||||
LinkedListNode<INode> newNode = node.List.AddBefore(node, new Operation(Instruction.Call, 0, result, callArgs));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue