diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-02-21 15:01:18 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-02-21 15:01:18 +0100 |
commit | 3acbe0d4063f5ba3060a19dcbdca91615015db88 (patch) | |
tree | 3dd588d008088974ad2681ee9226d47379c0605f /tile.cpp | |
parent | 5eb4ae08d5cd81f7315998394054aa50e52b6870 (diff) |
flush
Diffstat (limited to 'tile.cpp')
-rw-r--r-- | tile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,9 +3,9 @@ namespace Magnum::Examples { -chunk::tile_index_type chunk::make_tile_indices() noexcept +chunk::tile_index_array_type chunk::make_tile_indices() noexcept { - tile_index_type array; + tile_index_array_type array; for (unsigned i = 0; i < N*N; i++) array[i] = (UnsignedByte)i; return array; |