2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-01-24 08:53:04 +00:00

chore: add systemtest to test rebuilding of vanilla zones

This commit is contained in:
Jan Laupetin
2026-01-15 23:56:39 +00:00
parent 2840489a38
commit 47dcab33e9
2 changed files with 97 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ size_t XChunkProcessorInflate::Process(unsigned streamNumber, const uint8_t* inp
ret = inflate(&stream, Z_FULL_FLUSH);
if (ret != Z_STREAM_END)
{
con::error("inflate of stream failed with error code {}: {}", streamNumber, ret, stream.msg);
con::error("inflate of stream {} failed with error code {}: {}", streamNumber, ret, stream.msg);
throw XChunkException(std::format("Zone has invalid or unsupported compression: {}", stream.msg));
}