summaryrefslogtreecommitdiffhomepage
path: root/test/serializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/serializer.cpp')
-rw-r--r--test/serializer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/serializer.cpp b/test/serializer.cpp
index 8a22d0e5..9f382602 100644
--- a/test/serializer.cpp
+++ b/test/serializer.cpp
@@ -11,9 +11,9 @@ namespace Path = Corrade::Utility::Path;
static chunk make_test_chunk()
{
- auto metal1 = loader.tile_atlas("metal1", {2, 2}),
- metal2 = loader.tile_atlas("metal2", {2, 2}),
- tiles = loader.tile_atlas("tiles", {8, 5});
+ auto metal1 = loader.tile_atlas("metal1", {2, 2}, pass_mode::pass),
+ metal2 = loader.tile_atlas("metal2", {2, 2}, pass_mode::blocked),
+ tiles = loader.tile_atlas("tiles", {8, 5}, pass_mode::pass);
constexpr auto N = TILE_MAX_DIM;
chunk c;
for (auto [x, k, pt] : c)