1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Don't have garbage in padding for save header

This commit is contained in:
ζeh Matt
2025-05-23 18:08:25 +03:00
parent b04348c56b
commit 027f7c4096

View File

@@ -55,7 +55,7 @@ namespace OpenRCT2
CompressionType Compression{};
uint64_t CompressedSize{};
std::array<uint8_t, 8> FNV1a{};
uint8_t padding[20];
uint8_t padding[20]{};
};
static_assert(sizeof(Header) == 64, "Header should be 64 bytes");