summaryrefslogtreecommitdiffhomepage
path: root/tile.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-02-21 15:01:18 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-02-21 15:01:18 +0100
commit3acbe0d4063f5ba3060a19dcbdca91615015db88 (patch)
tree3dd588d008088974ad2681ee9226d47379c0605f /tile.cpp
parent5eb4ae08d5cd81f7315998394054aa50e52b6870 (diff)
flush
Diffstat (limited to 'tile.cpp')
-rw-r--r--tile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tile.cpp b/tile.cpp
index 3fe28959..85f98100 100644
--- a/tile.cpp
+++ b/tile.cpp
@@ -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;