diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-23 10:00:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 10:00:31 +0200 |
commit | 393a0152eaccaf21313b6186adeea1cf6a7f0623 (patch) | |
tree | 28044bd643418b4293494391b3c1d32163126dd8 /editor/plugins | |
parent | 791da4cb83bda1b3ef8dc167e3db7cccf10e8762 (diff) | |
parent | 50be65bf4314d9b3c5888f5f02d6ffae504aae7a (diff) |
Merge pull request #32055 from qarmin/some_code_fixes
Changed some code found by Clang Tidy and Coverity
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/sprite_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/sprite_editor_plugin.cpp b/editor/plugins/sprite_editor_plugin.cpp index 2deb2090e2..69fd592652 100644 --- a/editor/plugins/sprite_editor_plugin.cpp +++ b/editor/plugins/sprite_editor_plugin.cpp @@ -102,7 +102,7 @@ Vector<Vector2> expand(const Vector<Vector2> &points, const Rect2i &rect, float int lasti = p2->Contour.size() - 1; Vector2 prev = Vector2(p2->Contour[lasti].X / PRECISION, p2->Contour[lasti].Y / PRECISION); - for (unsigned int i = 0; i < p2->Contour.size(); i++) { + for (uint64_t i = 0; i < p2->Contour.size(); i++) { Vector2 cur = Vector2(p2->Contour[i].X / PRECISION, p2->Contour[i].Y / PRECISION); if (cur.distance_to(prev) > 0.5) { |