summaryrefslogtreecommitdiff
path: root/core/io/image.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-15 13:18:27 +0100
committerGitHub <noreply@github.com>2022-03-15 13:18:27 +0100
commit51bbcbdec2f971ed0113992b34335ef3c9873e79 (patch)
tree2a6c142089cb1c766f3b18107d70e8a418ce6248 /core/io/image.cpp
parentd0fee76717abde7ce7d922e488a03782669b2450 (diff)
parent39d429e49705fe153a20dfb27421f1246237a683 (diff)
Merge pull request #45263 from KoBeWi/😕
Diffstat (limited to 'core/io/image.cpp')
-rw-r--r--core/io/image.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/image.cpp b/core/io/image.cpp
index 577fc59807..766c84bdbe 100644
--- a/core/io/image.cpp
+++ b/core/io/image.cpp
@@ -1465,8 +1465,8 @@ template <class Component, int CC, bool renormalize,
void (*renormalize_func)(Component *)>
static void _generate_po2_mipmap(const Component *p_src, Component *p_dst, uint32_t p_width, uint32_t p_height) {
//fast power of 2 mipmap generation
- uint32_t dst_w = MAX(p_width >> 1, 1);
- uint32_t dst_h = MAX(p_height >> 1, 1);
+ uint32_t dst_w = MAX(p_width >> 1, 1u);
+ uint32_t dst_h = MAX(p_height >> 1, 1u);
int right_step = (p_width == 1) ? 0 : CC;
int down_step = (p_height == 1) ? 0 : (p_width * CC);