summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-29 00:54:19 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-29 00:54:19 +0200
commitb6a42cc53f808c86342d1bcd400ea95e6e7f5762 (patch)
treecd65334638415d037e5544c9af5142eab3d6bc7a /src
parent9954b8b4f5fb95470e127a4f24a0c73289dd49a9 (diff)
serializer work
Diffstat (limited to 'src')
-rw-r--r--src/tile-image.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile-image.hpp b/src/tile-image.hpp
index 30ae7b0b..06d0cb41 100644
--- a/src/tile-image.hpp
+++ b/src/tile-image.hpp
@@ -10,7 +10,7 @@ struct tile_atlas;
struct tile_image final
{
std::shared_ptr<tile_atlas> atlas;
- std::uint16_t variant = (std::uint8_t)-1;
+ std::uint16_t variant = (std::uint16_t)-1;
explicit operator bool() const noexcept { return !!atlas; }