1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Fix trim condition

This commit is contained in:
ζeh Matt
2021-12-13 15:35:42 +02:00
parent a742b49f2c
commit 9ec4e9c326

View File

@@ -148,7 +148,7 @@ namespace OpenRCT2
static constexpr storage_block_type block_init_value{};
static constexpr storage_block_type block_mask_value = static_cast<storage_block_type>(~block_init_value);
static constexpr bool requires_trim = byte_aligned_bitsize != capacity_bits;
static constexpr bool requires_trim = TBitSize != capacity_bits;
public:
using block_type = storage_block_type;