diff options
Diffstat (limited to '')
-rw-r--r-- | minui/resources.c | 4 | ||||
-rw-r--r-- | minuitwrp/resources.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/minui/resources.c b/minui/resources.c index 605edbca7..fe1e99926 100644 --- a/minui/resources.c +++ b/minui/resources.c @@ -100,10 +100,10 @@ int res_create_surface(const char* name, gr_surface* pSurface) { int color_type, bit_depth; size_t width, height; - png_get_IHDR(png_ptr, info_ptr, width, height, &bit_depth, + png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL); - png_byte* channels = png_get_channels(png_ptr, info_ptr); + png_byte channels = png_get_channels(png_ptr, info_ptr); if (!(bit_depth == 8 && ((channels == 3 && color_type == PNG_COLOR_TYPE_RGB) || diff --git a/minuitwrp/resources.c b/minuitwrp/resources.c index 3b833cc70..4dd10a9de 100644 --- a/minuitwrp/resources.c +++ b/minuitwrp/resources.c @@ -100,10 +100,10 @@ int res_create_surface_png(const char* name, gr_surface* pSurface) { int color_type, bit_depth; size_t width, height; - png_get_IHDR(png_ptr, info_ptr, width, height, &bit_depth, + png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL); - png_byte* channels = png_get_channels(png_ptr, info_ptr); + png_byte channels = png_get_channels(png_ptr, info_ptr); size_t stride = 4 * width; size_t pixelSize = stride * height; |