diff options
Diffstat (limited to 'tile.cpp')
| -rw-r--r-- | tile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
