diff options
author | kleonc <9283098+kleonc@users.noreply.github.com> | 2021-12-20 21:37:22 +0100 |
---|---|---|
committer | kleonc <9283098+kleonc@users.noreply.github.com> | 2021-12-20 21:37:22 +0100 |
commit | 46eebf11ca57f81590f305a5ba28e445f33a1f4e (patch) | |
tree | c1a12ab45e600a3495bdc9dccb3a146b9098a116 /editor/editor_atlas_packer.cpp | |
parent | 71616630e033670dc90c5d87fb65b758877f8ea1 (diff) | |
download | redot-engine-46eebf11ca57f81590f305a5ba28e445f33a1f4e.tar.gz |
EditorAtlasPacker Fix incorrectly deducing zero height in some cases
Diffstat (limited to 'editor/editor_atlas_packer.cpp')
-rw-r--r-- | editor/editor_atlas_packer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_atlas_packer.cpp b/editor/editor_atlas_packer.cpp index 85541c093a..b8eba7e3f8 100644 --- a/editor/editor_atlas_packer.cpp +++ b/editor/editor_atlas_packer.cpp @@ -233,12 +233,12 @@ void EditorAtlasPacker::chart_pack(Vector<Chart> &charts, int &r_width, int &r_h const int *top_heights = bitmaps[i].top_heights.ptr(); const int *bottom_heights = bitmaps[i].bottom_heights.ptr(); - for (int j = 0; j < atlas_w - w; j++) { + for (int j = 0; j <= atlas_w - w; j++) { int height = 0; for (int k = 0; k < w; k++) { int pixmap_h = bottom_heights[k]; - if (pixmap_h == -1) { + if (pixmap_h == 0x7FFFFFFF) { continue; //no pixel here, anything is fine } |