From 83b7e6db986a602ae50150a00bebdd964ffa452a Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Fri, 3 May 2024 00:58:57 -0400 Subject: [PATCH] Consistent Naming --- src/struct.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/struct.ts b/src/struct.ts index bd5d821..d7c00f3 100644 --- a/src/struct.ts +++ b/src/struct.ts @@ -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) {