use 0 instead of undef

This commit is contained in:
Samuliak 2024-05-16 16:42:19 +02:00 committed by Isaac Marovitz
parent 4a65260655
commit 200da3dc55
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl
public const string ArgumentNamePrefix = "a";
public const string UndefinedName = "undef";
public const string UndefinedName = "0";
}
}