summaryrefslogtreecommitdiff
path: root/src/exporter.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/exporter.py')
-rw-r--r--src/exporter.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/exporter.py b/src/exporter.py
index f1afd4b..aad9559 100644
--- a/src/exporter.py
+++ b/src/exporter.py
@@ -192,8 +192,12 @@ class KPMapExporter:
sectorData = self._packSectorData(sectors)
# now that we've got that, we can pack the first part of the file
- data = bytearray(struct.pack('>IIIII', len(self.layers), 20 + len(sectorData), 0, 0, 0))
- requiredFixUps.append((16, 'UnlockBytecode'))
+ version = 1
+ headerSize = 0x24
+ data = bytearray(struct.pack('>4sIIIIII', 'KP_m', version, len(self.layers), 20 + len(sectorData), 0, 0, 0, headerSize, 0))
+ requiredFixUps.append((24, 'UnlockBytecode'))
+ requiredFixUps.append((32, self.map.bgName))
+ stringsToAdd.add(self.map.bgName)
# list of layer pointers goes here.. or will, later
data += sectorData