diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ground-atlas.cpp | 1 | ||||
-rw-r--r-- | src/wall-atlas.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/ground-atlas.cpp b/src/ground-atlas.cpp index ea513d44..d39ecadc 100644 --- a/src/ground-atlas.cpp +++ b/src/ground-atlas.cpp @@ -18,6 +18,7 @@ ground_atlas::ground_atlas(ground_def info, const ImageView2D& image) : _texcoords{make_texcoords_array(Vector2ui(image.size()), _def.size)}, _pixel_size{image.size()} { + //Debug{} << "make ground_atlas" << _def.name; constexpr auto variant_max = std::numeric_limits<variant_t>::max(); fm_soft_assert(num_tiles() <= variant_max); fm_soft_assert(_def.size.x() > 0 && _def.size.y() > 0); diff --git a/src/wall-atlas.cpp b/src/wall-atlas.cpp index b7ff68d9..9ea81fe5 100644 --- a/src/wall-atlas.cpp +++ b/src/wall-atlas.cpp @@ -108,6 +108,7 @@ wall_atlas::wall_atlas(wall_atlas_def def, String path, const ImageView2D& img) _image_size{get_image_size(img)}, _direction_map{def.direction_map} { + //Debug{} << "make wall_atlas" << _info.name; { const auto frame_count = _frame_array.size(); fm_soft_assert(frame_count > 0); |