Fix type in extract_common.py (BzTileID)

This commit is contained in:
2024-01-06 19:55:40 +01:00
parent f667614cfe
commit 114a464c95
2 changed files with 4 additions and 4 deletions

View File

@@ -173,7 +173,7 @@ class EnumWriter:
def output_enum_to_tile(self, func_name):
writer = self.writer
writer.output(f"static {self.enum_type} {func_name}({self.enum_type} type) ")
writer.output(f"static BzTileID {func_name}({self.enum_type} type) ")
writer.block_start()
writer.output("switch (type) ")