diff --git a/DwarfOne2C/CWriter/Types.cs b/DwarfOne2C/CWriter/Types.cs index bb336a3..038316f 100644 --- a/DwarfOne2C/CWriter/Types.cs +++ b/DwarfOne2C/CWriter/Types.cs @@ -80,7 +80,6 @@ private static (string part1, string part2) GetArray( if(current.typeID > 0) { (type, part2) = GetType(allTags, IDToIndex, current); - type += GetModifiers(allTags, IDToIndex, current); } else { @@ -129,7 +128,7 @@ private static (string part1, string part2) GetFunctionPointer( else { (part1, part2) = GetType(allTags, IDToIndex, current); - part1 += GetModifiers(allTags, IDToIndex, current) + "("; + part1 += "("; } StringBuilder sb = new();