diff options
Diffstat (limited to 'editor/imgui-tiles.cpp')
-rw-r--r-- | editor/imgui-tiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui-tiles.cpp b/editor/imgui-tiles.cpp index 9d84027f..57cdecba 100644 --- a/editor/imgui-tiles.cpp +++ b/editor/imgui-tiles.cpp @@ -49,7 +49,7 @@ void app::draw_editor_tile_pane_atlas(tile_editor& ed, StringView name, const st }; const bool perm_selected = ed.is_permutation_selected(atlas); constexpr std::size_t per_row = 8; - for (std::size_t i = 0; i < N; i++) + for (auto i = 0_uz; i < N; i++) { const bool selected = ed.is_tile_selected(atlas, i); if (i > 0 && i % per_row == 0) |