From 8ea6924dda8d452bd870302a2c4e96f437ee5443 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 22 Nov 2023 21:38:29 +0100 Subject: flush --- src/wall-atlas.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/wall-atlas.cpp b/src/wall-atlas.cpp index 9c700548..9c544896 100644 --- a/src/wall-atlas.cpp +++ b/src/wall-atlas.cpp @@ -22,7 +22,9 @@ void wall_atlas::validate(const wall_atlas& a, const ImageView2D& img) noexcept( for (const auto& frame : a.raw_frame_array()) { fm_soft_assert(frame.offset < Vector2ui{(unsigned)width, (unsigned)height}); - // todo check frame offset + size + fm_soft_assert(frame.offset.y() + iTILE_SIZE.z() <= height); + fm_soft_assert(frame.offset.x() < iTILE_SIZE2.x()); + // todo check frame offset + size based on wall_atlas::expected_size() } const auto frame_count = a.raw_frame_array().size(); -- cgit v1.2.3