From 4142d3792bfe2f6e8748add0d8e9ecaf0ed8b8f0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 19 Oct 2019 00:26:43 +0200 Subject: [PATCH] - delete BUILDART header if found. This will otherwise cause problems down the line because these 8 bytes are ignored in the offsets. --- source/common/textures/buildtiles.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/common/textures/buildtiles.cpp b/source/common/textures/buildtiles.cpp index 800f34f01..b2ebeee74 100644 --- a/source/common/textures/buildtiles.cpp +++ b/source/common/textures/buildtiles.cpp @@ -294,7 +294,10 @@ int BuildFiles::LoadArtFile(const char *fn, bool mapart, int firsttile) const uint8_t *artptr = artdata.Data(); if (artdata.Size() > 16) { - if (memcmp(artptr, "BUILDART", 8) == 0) artptr += 8; + if (memcmp(artptr, "BUILDART", 8) == 0) + { + artdata.Delete(0, 8); + } // Only load the data if the header is present if (CountTiles(fn, artptr) > 0) {