summaryrefslogtreecommitdiffhomepage
path: root/src/wall-atlas.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wall-atlas.hpp')
-rw-r--r--src/wall-atlas.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wall-atlas.hpp b/src/wall-atlas.hpp
index 1a30adbe..c08a53e7 100644
--- a/src/wall-atlas.hpp
+++ b/src/wall-atlas.hpp
@@ -91,14 +91,14 @@ struct wall_atlas_def final
Wall::Info header;
std::vector<Wall::Frame> frames;
std::vector<Wall::Direction> direction_array;
- std::array<Wall::DirArrayIndex, Direction_COUNT> direction_map;
- std::bitset<Direction_COUNT> direction_mask{0};
+ std::array<Wall::DirArrayIndex, Wall::Direction_COUNT> direction_map;
+ std::bitset<Wall::Direction_COUNT> direction_mask{0};
static wall_atlas_def deserialize(StringView filename);
void serialize(StringView filename) const;
static void serialize(StringView filename, const Wall::Info& header, ArrayView<const Wall::Frame> frames,
ArrayView<const Wall::Direction> dir_array,
- std::array<Wall::DirArrayIndex, Direction_COUNT> dir_map);
+ std::array<Wall::DirArrayIndex, Wall::Direction_COUNT> dir_map);
};
class wall_atlas final