Fix trim condition

This commit is contained in:
ζeh Matt 2021-12-13 15:35:42 +02:00
parent a742b49f2c
commit 9ec4e9c326
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
1 changed files with 1 additions and 1 deletions

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;