Skip to content

Commit

Permalink
Add missing 0x to anonymous types
Browse files Browse the repository at this point in the history
  • Loading branch information
RA-Kooi committed Dec 26, 2021
1 parent 764c111 commit b6df233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DwarfOne2C/Parsing/CompilationUnit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public void SecondPass()
// Fixup weird invalid names
if(tag.name != null && tag.name.StartsWith('@'))
{
tag.name = $"__anon_{tag.ID:X}";
tag.name = $"__anon_0x{tag.ID:X}";
}
}

Expand Down

0 comments on commit b6df233

Please sign in to comment.