minor bugfixes #38

Merged
MartinFouilleul merged 3 commits from minor_bugfixes into codebase_restructuring 2023-08-11 08:55:23 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit c6e197527e - Show all commits

View File

@ -1607,6 +1607,10 @@ mg_image mg_image_create_from_data(mg_surface surface, str8 data, bool flip)
image = mg_image_create_from_rgba8(surface, width, height, pixels); image = mg_image_create_from_rgba8(surface, width, height, pixels);
free(pixels); free(pixels);
} }
else
{
log_error("stbi_load_from_memory() failed: %s\n", stbi_failure_reason());
}
return(image); return(image);
} }
@ -1626,6 +1630,10 @@ mg_image mg_image_create_from_file(mg_surface surface, str8 path, bool flip)
image = mg_image_create_from_rgba8(surface, width, height, pixels); image = mg_image_create_from_rgba8(surface, width, height, pixels);
free(pixels); free(pixels);
} }
else
{
log_error("stbi_load() failed: %s\n", stbi_failure_reason());
}
return(image); return(image);
} }