diff options
Diffstat (limited to 'src/wall-atlas.hpp')
-rw-r--r-- | src/wall-atlas.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wall-atlas.hpp b/src/wall-atlas.hpp index 6a94b34f..9b41200e 100644 --- a/src/wall-atlas.hpp +++ b/src/wall-atlas.hpp @@ -24,8 +24,9 @@ struct Group Color4 tint_mult{1,1,1,1}; Color3 tint_add; uint8_t from_rotation = (uint8_t)-1; - bool mirrored : 1 = false, - use_default_tint : 1 = true; + bool mirrored : 1 = false, + default_tint : 1 = true, + _default_tint_specified : 1 = false; explicit operator bool() const noexcept { return !is_empty(); } bool is_empty() const noexcept { return count == 0; } |