summaryrefslogtreecommitdiff
path: root/core/image.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-03-27 14:52:32 +0100
committerGitHub <noreply@github.com>2020-03-27 14:52:32 +0100
commit9a7dbc2acafdd04ff0fe09bc5f4838b4920348a8 (patch)
treef274da1abc2a59923c7941b538842386462c8892 /core/image.cpp
parent7750302944af4485ed8e288af86905f0a38229e8 (diff)
parentf725bd99f4cedc9ce9cfc602b1aae8ee7b5a6a51 (diff)
Merge pull request #37351 from akien-mga/fix-warnings-Wmaybe-initialized
Fix some -Wmaybe-uninitialized warnings
Diffstat (limited to 'core/image.cpp')
-rw-r--r--core/image.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/image.cpp b/core/image.cpp
index 2c39c9b882..d691c4f442 100644
--- a/core/image.cpp
+++ b/core/image.cpp
@@ -1680,7 +1680,7 @@ Error Image::generate_mipmap_roughness(RoughnessChannel p_roughness_channel, con
int pixel_ofs = y * w + x;
Color c = _get_color_at_ofs(ptr, pixel_ofs);
- float roughness;
+ float roughness = 0;
switch (p_roughness_channel) {
case ROUGHNESS_CHANNEL_R: {