diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-20 23:25:32 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-20 23:25:32 +0200 |
commit | 4213fa8a986ccfdf03783638862a9aacf3ea8601 (patch) | |
tree | e1d78e3dcc74ce6c2605ff31e035fb7e4ad36453 /src/tile-atlas.cpp | |
parent | d22abc50862f7243228c93fd2fd3878b37821487 (diff) |
rename macros
Diffstat (limited to 'src/tile-atlas.cpp')
-rw-r--r-- | src/tile-atlas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile-atlas.cpp b/src/tile-atlas.cpp index 6688536f..d08b4798 100644 --- a/src/tile-atlas.cpp +++ b/src/tile-atlas.cpp @@ -25,7 +25,7 @@ tile_atlas::tile_atlas(Containers::StringView name, const ImageView2D& image, Ve std::array<Vector2, 4> tile_atlas::texcoords_for_id(std::size_t i) const { - ASSERT(i < (size_/dims_).product()); + fm_assert(i < (size_/dims_).product()); return texcoords_[i]; } |