Skip to content

Commit 448f22d

Browse files
committed
Handle new default value in the code generator.
1 parent 489f847 commit 448f22d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/CodeGenerator/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ internal static class Program
7272
{ "ImVec4(1,1,1,1)", "new Vector4(1, 1, 1, 1)" },
7373
{ "ImDrawCornerFlags_All", "(int)ImDrawCornerFlags.All" },
7474
{ "FLT_MAX", "float.MaxValue" },
75+
{ "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))", "0xFFFFFFFF" }
7576
};
7677

7778
private static readonly Dictionary<string, string> s_identifierReplacements = new Dictionary<string, string>()

0 commit comments

Comments
 (0)