diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-12-10 23:35:48 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-12-10 23:35:48 +0100 |
commit | 9aba8139b728d3b25f5763ddc134b09e5a2e1948 (patch) | |
tree | 37f18eee33ba98b79c5980961a0f12fbc9017b51 /serialize/world-reader.cpp | |
parent | 4e46a8101b2063457ac0c56770e58cd0bedf52ea (diff) |
w
Diffstat (limited to 'serialize/world-reader.cpp')
-rw-r--r-- | serialize/world-reader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/serialize/world-reader.cpp b/serialize/world-reader.cpp index ec8b733a..d3954b09 100644 --- a/serialize/world-reader.cpp +++ b/serialize/world-reader.cpp @@ -223,10 +223,13 @@ void reader_state::read_chunks(reader_t& s) //t.passability() = pass_mode(flags & pass_mask); if (flags & meta_ground) t.ground() = make_atlas(); + // todo! +#if 0 if (flags & meta_wall_n) t.wall_north() = make_atlas(); if (flags & meta_wall_w) t.wall_west() = make_atlas(); +#endif if (PROTO >= 3 && PROTO < 8) [[unlikely]] if (flags & meta_scenery_) read_old_scenery(s, ch, i); |