summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-30 00:28:21 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-30 00:28:21 +0100
commit01a8ae2ddf4b52fb9a7d5d46e433c19a5efcfa8d (patch)
tree01adb13c9c97a34b814a965d64ed72fd48aad86e /src
parent1b5a4bb5084c79a79da50affc5d9c8cd94fd47d7 (diff)
tile, serialize/save: limit tile atlas size to 0xff
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 f1db9a5e..77424c62 100644
--- a/src/tile-image.hpp
+++ b/src/tile-image.hpp
@@ -6,7 +6,7 @@ namespace floormat {
struct tile_atlas;
-using variant_t = std::uint16_t;
+using variant_t = std::uint8_t;
struct tile_image_proto final
{