Merge pull request #22722 from akien-mga/fix-warnings

Fix more "may be used initialized" warnings from GCC 7
This commit is contained in:
Rémi Verschelde 2018-10-07 11:07:13 +02:00 committed by GitHub
commit bf6dcb9105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 45 additions and 43 deletions

View file

@ -1473,7 +1473,8 @@ void Image::create(int p_width, int p_height, bool p_use_mipmaps, Format p_forma
void Image::create(const char **p_xpm) {
int size_width, size_height;
int size_width = 0;
int size_height = 0;
int pixelchars = 0;
mipmaps = false;
bool has_alpha = false;
@ -1489,8 +1490,8 @@ void Image::create(const char **p_xpm) {
int line = 0;
HashMap<String, Color> colormap;
int colormap_size;
uint32_t pixel_size;
int colormap_size = 0;
uint32_t pixel_size = 0;
PoolVector<uint8_t>::Write w;
while (status != DONE) {