Consistent Naming

This commit is contained in:
TheBrokenRail 2024-05-03 00:58:57 -04:00
parent bc01c9b814
commit 83b7e6db98
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ export class Struct {
if (lastProperty) {
paddingSize += ` - sizeof(${lastProperty.type()})`;
}
out += `${INDENT}uchar _padding${i}[${paddingSize}];\n`;
out += `${INDENT}uchar __padding${i}[${paddingSize}];\n`;
// The Actual Property
if (property !== sizeProperty) {