diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-08 05:52:53 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-08 05:52:53 +0200 |
commit | 382ba9ffeedc95039e8d4ec360cd389ae220159c (patch) | |
tree | d92bc1fe83f3f13da2eea6a697b0973a07a54401 /src | |
parent | 51e724595fdeb95366d1ef9e096742a0ea394e0e (diff) |
b
Diffstat (limited to 'src')
-rw-r--r-- | src/chunk.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index 2eccef14..d5bde803 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -117,8 +117,8 @@ public: static constexpr size_t max_wall_quad_count = TILE_COUNT*Wall::Direction_COUNT*(Wall::Group_COUNT+4); - pass_region make_pass_region(bool debug = false, ArrayView<Vector2i> positions = {}); - pass_region make_pass_region(const Search::pred& f, bool debug = false, ArrayView<Vector2i> positions = {}); + pass_region make_pass_region(bool debug = false, ArrayView<const Vector2i> positions = {}); + pass_region make_pass_region(const Search::pred& f, bool debug = false, ArrayView<const Vector2i> positions = {}); private: struct ground_stuff |