summaryrefslogtreecommitdiffhomepage
path: root/src/tile-defs.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-04-14 13:09:38 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-04-14 13:09:38 +0200
commit7b760eb180d9c0e3362589a7339b498bd420cd58 (patch)
tree81b998c5b814c72586276dd536dd6312a4c85a06 /src/tile-defs.hpp
parenta7098d6e6f1098f712f58d74cf9196d7b885028a (diff)
switch to higher walls
Diffstat (limited to 'src/tile-defs.hpp')
-rw-r--r--src/tile-defs.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile-defs.hpp b/src/tile-defs.hpp
index 072935a8..ab8ef86b 100644
--- a/src/tile-defs.hpp
+++ b/src/tile-defs.hpp
@@ -8,7 +8,7 @@ constexpr inline unsigned char TILE_MAX_DIM = 16;
constexpr inline size_t TILE_COUNT = size_t{TILE_MAX_DIM}*size_t{TILE_MAX_DIM};
constexpr inline auto TILE_MAX_DIM20d = Magnum::Math::Vector3<double> { TILE_MAX_DIM, TILE_MAX_DIM, 0 };
-constexpr inline auto iTILE_SIZE = Magnum::Math::Vector3<Int> { 64, 64, 64 };
+constexpr inline auto iTILE_SIZE = Magnum::Math::Vector3<Int> { 64, 64, 128 };
constexpr inline auto uiTILE_SIZE = Magnum::Math::Vector3<UnsignedInt> { iTILE_SIZE };
constexpr inline auto bTILE_SIZE = Magnum::Math::Vector3<Byte> { iTILE_SIZE };
constexpr inline auto iTILE_SIZE2 = Magnum::Math::Vector2<Int> { iTILE_SIZE[0], iTILE_SIZE[1] };