diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-08 12:01:42 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-08 12:21:26 +0200 |
commit | 0cd263af59f256da2d2f3a77be264d5e64c1ec5d (patch) | |
tree | f89935707693657ac804aef27c6b188ed66f4d30 /test | |
parent | d1984938e4f0cbc24b7b8cc6e219fa873d39418a (diff) |
mplement z levels
Diffstat (limited to 'test')
-rw-r--r-- | test/save/quicksave - Copy (0020).dat | bin | 0 -> 1523 bytes | |||
-rw-r--r-- | test/serializer.cpp | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/save/quicksave - Copy (0020).dat b/test/save/quicksave - Copy (0020).dat Binary files differnew file mode 100644 index 00000000..119df03d --- /dev/null +++ b/test/save/quicksave - Copy (0020).dat diff --git a/test/serializer.cpp b/test/serializer.cpp index 8107ad68..02e6fdcc 100644 --- a/test/serializer.cpp +++ b/test/serializer.cpp @@ -14,7 +14,7 @@ namespace Path = Corrade::Utility::Path; namespace { -chunk& make_test_chunk(world& w, chunk_coords ch) +chunk& make_test_chunk(world& w, chunk_coords_ ch) { chunk& c = w[ch]; c.mark_modified(); @@ -87,7 +87,7 @@ void test_serializer(StringView input, StringView tmp) { if (Path::exists(tmp)) Path::remove(tmp); - chunk_coords coord{}; + chunk_coords_ coord{}; world w; if (input) w = world::deserialize(input); |