summaryrefslogtreecommitdiffhomepage
path: root/tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tile.cpp')
-rw-r--r--tile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tile.cpp b/tile.cpp
index 85f98100..eff0177d 100644
--- a/tile.cpp
+++ b/tile.cpp
@@ -7,7 +7,7 @@ chunk::tile_index_array_type chunk::make_tile_indices() noexcept
{
tile_index_array_type array;
for (unsigned i = 0; i < N*N; i++)
- array[i] = (UnsignedByte)i;
+ array[i] = (std::uint8_t)i;
return array;
}